Mercurial > hg > xemacs-beta
annotate lisp/bytecomp.el @ 5612:2c20bc575989
Use the old #'labels implementation if #'lexical-let changes lambdas.
lisp/ChangeLog addition:
2011-12-13 Aidan Kehoe <kehoea@parhasard.net>
* bytecomp.el (byte-compile-initial-macro-environment):
If lexical let has played with our lambas, give up on constructing
the compiled functions at compiled time, that strategy doesn't
work.
author | Aidan Kehoe <kehoea@parhasard.net> |
---|---|
date | Tue, 13 Dec 2011 20:28:32 +0000 |
parents | 4218b56833b3 |
children | a944c124b2d3 |
rev | line source |
---|---|
428 | 1 ;;; bytecomp.el --- compilation of Lisp code into byte code. |
2 | |
3 ;;; Copyright (C) 1985-1987, 1991-1994 Free Software Foundation, Inc. | |
4 ;;; Copyright (C) 1996 Ben Wing. | |
5 | |
442 | 6 ;; Authors: Jamie Zawinski <jwz@jwz.org> |
428 | 7 ;; Hallvard Furuseth <hbf@ulrik.uio.no> |
442 | 8 ;; Ben Wing <ben@xemacs.org> |
9 ;; Martin Buchholz <martin@xemacs.org> | |
10 ;; Richard Stallman <rms@gnu.org> | |
11 ;; Keywords: internal lisp | |
12 | |
4677
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4639
diff
changeset
|
13 (defconst byte-compile-version "2.28 XEmacs; 2009-08-09.") |
428 | 14 |
15 ;; This file is part of XEmacs. | |
16 | |
5402
308d34e9f07d
Changed bulk of GPLv2 or later files identified by script
Mats Lidell <matsl@xemacs.org>
parents:
5269
diff
changeset
|
17 ;; XEmacs is free software: you can redistribute it and/or modify it |
308d34e9f07d
Changed bulk of GPLv2 or later files identified by script
Mats Lidell <matsl@xemacs.org>
parents:
5269
diff
changeset
|
18 ;; under the terms of the GNU General Public License as published by the |
308d34e9f07d
Changed bulk of GPLv2 or later files identified by script
Mats Lidell <matsl@xemacs.org>
parents:
5269
diff
changeset
|
19 ;; Free Software Foundation, either version 3 of the License, or (at your |
308d34e9f07d
Changed bulk of GPLv2 or later files identified by script
Mats Lidell <matsl@xemacs.org>
parents:
5269
diff
changeset
|
20 ;; option) any later version. |
308d34e9f07d
Changed bulk of GPLv2 or later files identified by script
Mats Lidell <matsl@xemacs.org>
parents:
5269
diff
changeset
|
21 |
308d34e9f07d
Changed bulk of GPLv2 or later files identified by script
Mats Lidell <matsl@xemacs.org>
parents:
5269
diff
changeset
|
22 ;; XEmacs is distributed in the hope that it will be useful, but WITHOUT |
308d34e9f07d
Changed bulk of GPLv2 or later files identified by script
Mats Lidell <matsl@xemacs.org>
parents:
5269
diff
changeset
|
23 ;; ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or |
308d34e9f07d
Changed bulk of GPLv2 or later files identified by script
Mats Lidell <matsl@xemacs.org>
parents:
5269
diff
changeset
|
24 ;; FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License |
308d34e9f07d
Changed bulk of GPLv2 or later files identified by script
Mats Lidell <matsl@xemacs.org>
parents:
5269
diff
changeset
|
25 ;; for more details. |
428 | 26 |
27 ;; You should have received a copy of the GNU General Public License | |
5402
308d34e9f07d
Changed bulk of GPLv2 or later files identified by script
Mats Lidell <matsl@xemacs.org>
parents:
5269
diff
changeset
|
28 ;; along with XEmacs. If not, see <http://www.gnu.org/licenses/>. |
428 | 29 |
30 ;;; Synched up with: FSF 19.30. | |
31 | |
32 ;;; Commentary: | |
33 | |
34 ;; The Emacs Lisp byte compiler. This crunches lisp source into a | |
442 | 35 ;; sort of p-code (`bytecode') which takes up less space and can be |
36 ;; interpreted faster. First, the source code forms are converted to | |
37 ;; an intermediate form, `lapcode' [`LAP' == `Lisp Assembly Program'] | |
38 ;; which is much easier to manipulate than bytecode. Then the lapcode | |
39 ;; is converted to bytecode, which can be considered to be actual | |
40 ;; machine language. Optimizations can occur at either the source | |
41 ;; level or the lapcode level. | |
42 | |
43 ;; The user entry points are byte-compile-file, | |
428 | 44 ;; byte-recompile-directory and byte-compile-buffer. |
45 | |
46 ;;; Code: | |
47 | |
48 ;;; ======================================================================== | |
49 ;;; Entry points: | |
50 ;;; byte-recompile-directory, byte-compile-file, | |
51 ;;; batch-byte-compile, batch-byte-recompile-directory, | |
52 ;;; byte-compile, compile-defun, | |
53 ;;; display-call-tree | |
54 ;;; RMS says: | |
55 ;;; (byte-compile-buffer and byte-compile-and-load-file were turned off | |
56 ;;; because they are not terribly useful and get in the way of completion.) | |
57 ;;; But I'm leaving them. --ben | |
58 | |
59 ;;; This version of the byte compiler has the following improvements: | |
60 ;;; + optimization of compiled code: | |
61 ;;; - removal of unreachable code; | |
62 ;;; - removal of calls to side-effectless functions whose return-value | |
63 ;;; is unused; | |
64 ;;; - compile-time evaluation of safe constant forms, such as (consp nil) | |
65 ;;; and (ash 1 6); | |
66 ;;; - open-coding of literal lambdas; | |
67 ;;; - peephole optimization of emitted code; | |
68 ;;; - trivial functions are left uncompiled for speed. | |
69 ;;; + support for inline functions; | |
70 ;;; + compile-time evaluation of arbitrary expressions; | |
71 ;;; + compile-time warning messages for: | |
72 ;;; - functions being redefined with incompatible arglists; | |
73 ;;; - functions being redefined as macros, or vice-versa; | |
74 ;;; - functions or macros defined multiple times in the same file; | |
75 ;;; - functions being called with the incorrect number of arguments; | |
76 ;;; - functions being called which are not defined globally, in the | |
77 ;;; file, or as autoloads; | |
78 ;;; - assignment and reference of undeclared free variables; | |
79 ;;; - various syntax errors; | |
80 ;;; + correct compilation of nested defuns, defmacros, defvars and defsubsts; | |
81 ;;; + correct compilation of top-level uses of macros; | |
82 ;;; + the ability to generate a histogram of functions called. | |
83 | |
84 ;;; User customization variables: | |
85 ;;; | |
86 ;;; byte-compile-verbose Whether to report the function currently being | |
87 ;;; compiled in the minibuffer; | |
88 ;;; byte-optimize Whether to do optimizations; this may be | |
89 ;;; t, nil, 'source, or 'byte; | |
90 ;;; byte-optimize-log Whether to report (in excruciating detail) | |
91 ;;; exactly which optimizations have been made. | |
92 ;;; This may be t, nil, 'source, or 'byte; | |
93 ;;; byte-compile-error-on-warn Whether to stop compilation when a warning is | |
94 ;;; produced; | |
95 ;;; byte-compile-delete-errors Whether the optimizer may delete calls or | |
96 ;;; variable references that are side-effect-free | |
97 ;;; except that they may return an error. | |
98 ;;; byte-compile-generate-call-tree Whether to generate a histogram of | |
99 ;;; function calls. This can be useful for | |
100 ;;; finding unused functions, as well as simple | |
101 ;;; performance metering. | |
102 ;;; byte-compile-warnings List of warnings to issue, or t. May contain | |
103 ;;; 'free-vars (references to variables not in the | |
104 ;;; current lexical scope) | |
105 ;;; 'unused-vars (non-global variables bound but | |
106 ;;; not referenced) | |
107 ;;; 'unresolved (calls to unknown functions) | |
108 ;;; 'callargs (lambda calls with args that don't | |
109 ;;; match the lambda's definition) | |
110 ;;; 'subr-callargs (calls to subrs with args that | |
111 ;;; don't match the subr's definition) | |
112 ;;; 'redefine (function cell redefined from | |
113 ;;; a macro to a lambda or vice versa, | |
114 ;;; or redefined to take other args) | |
115 ;;; 'obsolete (obsolete variables and functions) | |
116 ;;; 'pedantic (references to Emacs-compatible | |
117 ;;; symbols) | |
4719
bd51ab22afa8
Make it possible to silence warnings issued when #'mapcar's result is discarded.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4716
diff
changeset
|
118 ;;; 'discarded-consing (use of mapcar instead of |
bd51ab22afa8
Make it possible to silence warnings issued when #'mapcar's result is discarded.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4716
diff
changeset
|
119 ;;; mapc, and similar) |
bd51ab22afa8
Make it possible to silence warnings issued when #'mapcar's result is discarded.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4716
diff
changeset
|
120 ;;; 'quoted-lambda (quoting a lambda expression |
bd51ab22afa8
Make it possible to silence warnings issued when #'mapcar's result is discarded.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4716
diff
changeset
|
121 ;;; as data, not as a function, |
bd51ab22afa8
Make it possible to silence warnings issued when #'mapcar's result is discarded.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4716
diff
changeset
|
122 ;;; and using it in a function |
bd51ab22afa8
Make it possible to silence warnings issued when #'mapcar's result is discarded.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4716
diff
changeset
|
123 ;;; context ) |
428 | 124 ;;; emacs-lisp-file-regexp Regexp for the extension of source-files; |
444 | 125 ;;; see also the function `byte-compile-dest-file'. |
428 | 126 ;;; byte-compile-overwrite-file If nil, delete old .elc files before saving. |
127 ;;; | |
128 ;;; Most of the above parameters can also be set on a file-by-file basis; see | |
129 ;;; the documentation of the `byte-compiler-options' macro. | |
130 | |
131 ;;; New Features: | |
132 ;;; | |
133 ;;; o The form `defsubst' is just like `defun', except that the function | |
134 ;;; generated will be open-coded in compiled code which uses it. This | |
135 ;;; means that no function call will be generated, it will simply be | |
136 ;;; spliced in. Lisp functions calls are very slow, so this can be a | |
137 ;;; big win. | |
138 ;;; | |
139 ;;; You can generally accomplish the same thing with `defmacro', but in | |
140 ;;; that case, the defined procedure can't be used as an argument to | |
141 ;;; mapcar, etc. | |
142 ;;; | |
143 ;;; o You can make a given function be inline even if it has already been | |
144 ;;; defined with `defun' by using the `proclaim-inline' form like so: | |
145 ;;; (proclaim-inline my-function) | |
146 ;;; This is, in fact, exactly what `defsubst' does. To make a function no | |
147 ;;; longer be inline, you must use `proclaim-notinline'. Beware that if | |
148 ;;; you define a function with `defsubst' and later redefine it with | |
444 | 149 ;;; `defun', it will still be open-coded until you use `proclaim-notinline'. |
428 | 150 ;;; |
151 ;;; o You can also open-code one particular call to a function without | |
152 ;;; open-coding all calls. Use the 'inline' form to do this, like so: | |
153 ;;; | |
154 ;;; (inline (foo 1 2 3)) ;; `foo' will be open-coded | |
155 ;;; or... | |
156 ;;; (inline ;; `foo' and `baz' will be | |
157 ;;; (foo 1 2 3 (bar 5)) ;; open-coded, but `bar' will not. | |
158 ;;; (baz 0)) | |
159 ;;; | |
160 ;;; o It is possible to open-code a function in the same file it is defined | |
161 ;;; in without having to load that file before compiling it. the | |
162 ;;; byte-compiler has been modified to remember function definitions in | |
163 ;;; the compilation environment in the same way that it remembers macro | |
164 ;;; definitions. | |
165 ;;; | |
166 ;;; o Forms like ((lambda ...) ...) are open-coded. | |
167 ;;; | |
444 | 168 ;;; o The form `eval-when-compile' is like `progn', except that the body |
428 | 169 ;;; is evaluated at compile-time. When it appears at top-level, this |
170 ;;; is analogous to the Common Lisp idiom (eval-when (compile) ...). | |
171 ;;; When it does not appear at top-level, it is similar to the | |
172 ;;; Common Lisp #. reader macro (but not in interpreted code). | |
173 ;;; | |
444 | 174 ;;; o The form `eval-and-compile' is similar to `eval-when-compile', |
175 ;;; but the whole form is evalled both at compile-time and at run-time. | |
428 | 176 ;;; |
177 ;;; o The command M-x byte-compile-and-load-file does what you'd think. | |
178 ;;; | |
444 | 179 ;;; o The command `compile-defun' is analogous to `eval-defun'. |
428 | 180 ;;; |
444 | 181 ;;; o If you run `byte-compile-file' on a filename which is visited in a |
428 | 182 ;;; buffer, and that buffer is modified, you are asked whether you want |
183 ;;; to save the buffer before compiling. | |
184 ;;; | |
185 ;;; o You can add this to /etc/magic to make file(1) recognize the files | |
186 ;;; generated by this compiler: | |
187 ;;; | |
613 | 188 ;;; 0 string ;ELC XEmacs Lisp compiled file, |
428 | 189 ;;; >4 byte x version %d |
190 ;;; | |
191 ;;; TO DO: | |
192 ;;; | |
193 ;;; o Should implement declarations and proclamations, notably special, | |
194 ;;; unspecial, and ignore. Do this in such a way as to not break cl.el. | |
195 ;;; o The bound-but-not-used warnings are not issued for variables whose | |
196 ;;; bindings were established in the arglist, due to the lack of an | |
197 ;;; ignore declaration. Once ignore exists, this should be turned on. | |
198 ;;; o Warn about functions and variables defined but not used? | |
199 ;;; Maybe add some kind of `export' declaration for this? | |
200 ;;; (With interactive functions being automatically exported?) | |
201 ;;; o Any reference to a variable, even one which is a no-op, will cause | |
202 ;;; the warning not to be given. Possibly we could use the for-effect | |
203 ;;; flag to determine when this reference is useless; possibly more | |
204 ;;; complex flow analysis would be necessary. | |
205 ;;; o If the optimizer deletes a variable reference, we might be left with | |
206 ;;; a bound-but-not-referenced warning. Generally this is ok, but not if | |
207 ;;; it's a synergistic result of macroexpansion. Need some way to note | |
208 ;;; that a varref is being optimized away? Of course it would be nice to | |
209 ;;; optimize away the binding too, someday, but it's unsafe today. | |
210 ;;; o (See byte-optimize.el for the optimization TODO list.) | |
211 | |
212 (require 'backquote) | |
213 | |
214 (or (fboundp 'defsubst) | |
215 ;; This really ought to be loaded already! | |
216 (load-library "bytecomp-runtime")) | |
217 | |
444 | 218 (defvar emacs-lisp-file-regexp "\\.el$" |
428 | 219 "*Regexp which matches Emacs Lisp source files. |
220 You may want to redefine `byte-compile-dest-file' if you change this.") | |
221 | |
222 ;; This enables file name handlers such as jka-compr | |
223 ;; to remove parts of the file name that should not be copied | |
224 ;; through to the output file name. | |
225 (defun byte-compiler-base-file-name (filename) | |
226 (let ((handler (find-file-name-handler filename | |
227 'byte-compiler-base-file-name))) | |
228 (if handler | |
229 (funcall handler 'byte-compiler-base-file-name filename) | |
230 filename))) | |
231 | |
232 (unless (fboundp 'byte-compile-dest-file) | |
233 ;; The user may want to redefine this along with emacs-lisp-file-regexp, | |
234 ;; so only define it if it is undefined. | |
235 (defun byte-compile-dest-file (filename) | |
236 "Convert an Emacs Lisp source file name to a compiled file name." | |
237 (setq filename (byte-compiler-base-file-name filename)) | |
238 (setq filename (file-name-sans-versions filename)) | |
239 (if (string-match emacs-lisp-file-regexp filename) | |
240 (concat (substring filename 0 (match-beginning 0)) ".elc") | |
241 (concat filename ".elc")))) | |
242 | |
243 ;; This can be the 'byte-compile property of any symbol. | |
244 (autoload 'byte-compile-inline-expand "byte-optimize") | |
245 | |
246 ;; This is the entrypoint to the lapcode optimizer pass1. | |
247 (autoload 'byte-optimize-form "byte-optimize") | |
248 ;; This is the entrypoint to the lapcode optimizer pass2. | |
249 (autoload 'byte-optimize-lapcode "byte-optimize") | |
250 (autoload 'byte-compile-unfold-lambda "byte-optimize") | |
251 | |
252 ;; This is the entry point to the decompiler, which is used by the | |
253 ;; disassembler. The disassembler just requires 'byte-compile, but | |
254 ;; that doesn't define this function, so this seems to be a reasonable | |
255 ;; thing to do. | |
256 (autoload 'byte-decompile-bytecode "byte-optimize") | |
257 | |
258 (defvar byte-compile-verbose | |
259 (and (not noninteractive) (> (device-baud-rate) search-slow-speed)) | |
260 "*Non-nil means print messages describing progress of byte-compiler.") | |
261 | |
262 (defvar byte-compile-print-gensym t | |
263 "*Non-nil means generate code that creates unique symbols at run-time. | |
264 This is achieved by printing uninterned symbols using the `#:SYMBOL' | |
265 notation, so that they will be read uninterned when run. | |
266 | |
267 With this feature, code that uses uninterned symbols in macros will | |
5503
7b5946dbfb96
Drop support for generating code appropriate for Emacs 19, bytecomp.el
Aidan Kehoe <kehoea@parhasard.net>
parents:
5475
diff
changeset
|
268 not be runnable under pre-21.0 XEmacsen.") |
428 | 269 |
270 (defvar byte-optimize t | |
271 "*Enables optimization in the byte compiler. | |
272 nil means don't do any optimization. | |
273 t means do all optimizations. | |
274 `source' means do source-level optimizations only. | |
275 `byte' means do code-level optimizations only.") | |
276 | |
277 (defvar byte-compile-delete-errors t | |
278 "*If non-nil, the optimizer may delete forms that may signal an error. | |
279 This includes variable references and calls to functions such as `car'.") | |
280 | |
281 ;; XEmacs addition | |
282 (defvar byte-compile-new-bytecodes nil | |
283 "This is completely ignored. It is only around for backwards | |
284 compatibility.") | |
285 | |
4677
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4639
diff
changeset
|
286 (defvar byte-compile-checks-on-load '((featurep 'xemacs)) |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4639
diff
changeset
|
287 "A list of expressions to check when first loading a file. |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4639
diff
changeset
|
288 Emacs will throw an error if any of them fail; checks will be made in |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4639
diff
changeset
|
289 reverse order.") |
428 | 290 |
291 ;; FSF enables byte-compile-dynamic-docstrings but not byte-compile-dynamic | |
292 ;; by default. This would be a reasonable conservative approach except | |
293 ;; for the fact that if you enable either of these, you get incompatible | |
294 ;; byte code that can't be read by XEmacs 19.13 or before or FSF 19.28 or | |
295 ;; before. | |
296 ;; | |
297 ;; Therefore, neither is enabled for 19.14. Both are enabled for 20.0 | |
298 ;; because we have no reason to be conservative about changing the | |
299 ;; way things work. (Ben) | |
300 | |
301 ;; However, I don't think that defaulting byte-compile-dynamic to nil | |
302 ;; is a compatibility issue - rather it is a performance issue. | |
303 ;; Therefore I am setting byte-compile-dynamic back to nil. (mrb) | |
304 | |
305 (defvar byte-compile-dynamic nil | |
306 "*If non-nil, compile function bodies so they load lazily. | |
307 They are hidden comments in the compiled file, and brought into core when the | |
308 function is called. | |
309 | |
310 To enable this option, make it a file-local variable | |
311 in the source file you want it to apply to. | |
312 For example, add -*-byte-compile-dynamic: t;-*- on the first line. | |
313 | |
314 When this option is true, if you load the compiled file and then move it, | |
315 the functions you loaded will not be able to run.") | |
316 | |
317 (defvar byte-compile-dynamic-docstrings (emacs-version>= 20) | |
318 "*If non-nil, compile doc strings for lazy access. | |
319 We bury the doc strings of functions and variables | |
320 inside comments in the file, and bring them into core only when they | |
321 are actually needed. | |
322 | |
323 When this option is true, if you load the compiled file and then move it, | |
324 you won't be able to find the documentation of anything in that file. | |
325 | |
326 To disable this option for a certain file, make it a file-local variable | |
327 in the source file. For example, add this to the first line: | |
328 -*-byte-compile-dynamic-docstrings:nil;-*- | |
329 You can also set the variable globally. | |
330 | |
331 This option is enabled by default because it reduces Emacs memory usage.") | |
332 | |
333 (defvar byte-optimize-log nil | |
334 "*If true, the byte-compiler will log its optimizations into *Compile-Log*. | |
335 If this is 'source, then only source-level optimizations will be logged. | |
336 If it is 'byte, then only byte-level optimizations will be logged.") | |
337 | |
338 (defvar byte-compile-error-on-warn nil | |
339 "*If true, the byte-compiler reports warnings with `error'.") | |
340 | |
341 ;; byte-compile-warning-types in FSF. | |
342 (defvar byte-compile-default-warnings | |
4719
bd51ab22afa8
Make it possible to silence warnings issued when #'mapcar's result is discarded.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4716
diff
changeset
|
343 '(redefine callargs subr-callargs free-vars unresolved unused-vars obsolete |
bd51ab22afa8
Make it possible to silence warnings issued when #'mapcar's result is discarded.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4716
diff
changeset
|
344 discarded-consing quoted-lambda) |
428 | 345 "*The warnings used when byte-compile-warnings is t.") |
346 | |
347 (defvar byte-compile-warnings t | |
348 "*List of warnings that the compiler should issue (t for the default set). | |
349 Elements of the list may be: | |
350 | |
351 free-vars references to variables not in the current lexical scope. | |
352 unused-vars references to non-global variables bound but not referenced. | |
353 unresolved calls to unknown functions. | |
354 callargs lambda calls with args that don't match the definition. | |
355 subr-callargs calls to subrs with args that don't match the definition. | |
356 redefine function cell redefined from a macro to a lambda or vice | |
357 versa, or redefined to take a different number of arguments. | |
358 obsolete use of an obsolete function or variable. | |
359 pedantic warn of use of compatible symbols. | |
4719
bd51ab22afa8
Make it possible to silence warnings issued when #'mapcar's result is discarded.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4716
diff
changeset
|
360 discarded-consing |
bd51ab22afa8
Make it possible to silence warnings issued when #'mapcar's result is discarded.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4716
diff
changeset
|
361 calls to (some) functions that allocate memory, where that |
bd51ab22afa8
Make it possible to silence warnings issued when #'mapcar's result is discarded.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4716
diff
changeset
|
362 memory is immediately discarded; canonically, the use of |
bd51ab22afa8
Make it possible to silence warnings issued when #'mapcar's result is discarded.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4716
diff
changeset
|
363 mapcar instead of mapc |
bd51ab22afa8
Make it possible to silence warnings issued when #'mapcar's result is discarded.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4716
diff
changeset
|
364 quoted-lambda passing a lambda expression not quoted as a function, as a |
bd51ab22afa8
Make it possible to silence warnings issued when #'mapcar's result is discarded.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4716
diff
changeset
|
365 function argument |
428 | 366 |
367 The default set is specified by `byte-compile-default-warnings' and | |
368 normally encompasses all possible warnings. | |
369 | |
370 See also the macro `byte-compiler-options'.") | |
371 | |
372 (defvar byte-compile-generate-call-tree nil | |
373 "*Non-nil means collect call-graph information when compiling. | |
374 This records functions that were called and from where. | |
375 If the value is t, compilation displays the call graph when it finishes. | |
376 If the value is neither t nor nil, compilation asks you whether to display | |
377 the graph. | |
378 | |
379 The call tree only lists functions called, not macros used. Those functions | |
380 which the byte-code interpreter knows about directly (eq, cons, etc.) are | |
381 not reported. | |
382 | |
383 The call tree also lists those functions which are not known to be called | |
384 \(that is, to which no calls have been compiled). Functions which can be | |
385 invoked interactively are excluded from this list.") | |
386 | |
387 (defconst byte-compile-call-tree nil "Alist of functions and their call tree. | |
388 Each element looks like | |
389 | |
390 \(FUNCTION CALLERS CALLS\) | |
391 | |
392 where CALLERS is a list of functions that call FUNCTION, and CALLS | |
393 is a list of functions for which calls were generated while compiling | |
394 FUNCTION.") | |
395 | |
396 (defvar byte-compile-call-tree-sort 'name | |
397 "*If non-nil, sort the call tree. | |
398 The values `name', `callers', `calls', `calls+callers' | |
399 specify different fields to sort on.") | |
400 | |
401 (defvar byte-compile-overwrite-file t | |
402 "If nil, old .elc files are deleted before the new is saved, and .elc | |
403 files will have the same modes as the corresponding .el file. Otherwise, | |
404 existing .elc files will simply be overwritten, and the existing modes | |
405 will not be changed. If this variable is nil, then an .elc file which | |
406 is a symbolic link will be turned into a normal file, instead of the file | |
407 which the link points to being overwritten.") | |
408 | |
409 (defvar byte-recompile-directory-ignore-errors-p nil | |
410 "If true, then `byte-recompile-directory' will continue compiling even | |
411 when an error occurs in a file. This is bound to t by | |
412 `batch-byte-recompile-directory'.") | |
413 | |
502 | 414 (defvar byte-recompile-ignore-uncompilable-mule-files t |
415 "If non-nil, `byte-recompile-*' ignores non-ASCII .el files in a non-Mule | |
416 XEmacs. This assumes that such files have a -*- coding: ??? -*- magic | |
417 cookie in their first line or a ;;;###coding system: magic cookie | |
418 early in the file.") | |
419 | |
428 | 420 (defvar byte-recompile-directory-recursively t |
421 "*If true, then `byte-recompile-directory' will recurse on subdirectories.") | |
422 | |
423 (defvar byte-compile-constants nil | |
424 "list of all constants encountered during compilation of this form") | |
425 (defvar byte-compile-variables nil | |
426 "list of all variables encountered during compilation of this form") | |
427 (defvar byte-compile-bound-variables nil | |
428 "Alist of variables bound in the context of the current form, | |
429 that is, the current lexical environment. This list lives partly | |
430 on the specbind stack. The cdr of each cell is an integer bitmask.") | |
5391
f9dc75bdbdc4
Implement #'load-time-value less hackishly, by modifying the byte compiler.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5377
diff
changeset
|
431 (defvar byte-compile-output-preface nil |
f9dc75bdbdc4
Implement #'load-time-value less hackishly, by modifying the byte compiler.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5377
diff
changeset
|
432 "Form to output before current by `byte-compile-output-file-form' |
f9dc75bdbdc4
Implement #'load-time-value less hackishly, by modifying the byte compiler.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5377
diff
changeset
|
433 This is used for implementing `load-time-value'.") |
428 | 434 |
4623
a9f83990e6bf
Fix a byte compiler bug with characters above ?\xFF.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4539
diff
changeset
|
435 (defvar byte-compile-force-escape-quoted nil |
4677
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4639
diff
changeset
|
436 "If t, `byte-compile-maybe-reset-coding' always chooses `escape-quoted' |
4623
a9f83990e6bf
Fix a byte compiler bug with characters above ?\xFF.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4539
diff
changeset
|
437 |
a9f83990e6bf
Fix a byte compiler bug with characters above ?\xFF.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4539
diff
changeset
|
438 This is for situations where the byte compiler output file needs to be |
a9f83990e6bf
Fix a byte compiler bug with characters above ?\xFF.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4539
diff
changeset
|
439 able to encode character values above ?\\xFF, but this cannot be |
a9f83990e6bf
Fix a byte compiler bug with characters above ?\xFF.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4539
diff
changeset
|
440 easily determined from the input file.") |
a9f83990e6bf
Fix a byte compiler bug with characters above ?\xFF.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4539
diff
changeset
|
441 |
428 | 442 (defconst byte-compile-referenced-bit 1) |
443 (defconst byte-compile-assigned-bit 2) | |
444 (defconst byte-compile-arglist-bit 4) | |
445 (defconst byte-compile-global-bit 8) | |
446 | |
447 (defvar byte-compile-free-references) | |
448 (defvar byte-compile-free-assignments) | |
449 | |
450 (defvar byte-compiler-error-flag) | |
451 | |
446 | 452 ;;; A form of eval that includes the currently defined macro definitions. |
453 ;;; This helps implement the promise made in the Lispref: | |
454 ;;; | |
455 ;;; "If a file being compiled contains a `defmacro' form, the macro is | |
456 ;;; defined temporarily for the rest of the compilation of that file." | |
457 (defun byte-compile-eval (form) | |
458 (let ((save-macro-environment nil)) | |
459 (unwind-protect | |
5503
7b5946dbfb96
Drop support for generating code appropriate for Emacs 19, bytecomp.el
Aidan Kehoe <kehoea@parhasard.net>
parents:
5475
diff
changeset
|
460 (loop |
7b5946dbfb96
Drop support for generating code appropriate for Emacs 19, bytecomp.el
Aidan Kehoe <kehoea@parhasard.net>
parents:
5475
diff
changeset
|
461 for (sym . def) in byte-compile-macro-environment |
7b5946dbfb96
Drop support for generating code appropriate for Emacs 19, bytecomp.el
Aidan Kehoe <kehoea@parhasard.net>
parents:
5475
diff
changeset
|
462 do (when (symbolp sym) |
7b5946dbfb96
Drop support for generating code appropriate for Emacs 19, bytecomp.el
Aidan Kehoe <kehoea@parhasard.net>
parents:
5475
diff
changeset
|
463 (push |
7b5946dbfb96
Drop support for generating code appropriate for Emacs 19, bytecomp.el
Aidan Kehoe <kehoea@parhasard.net>
parents:
5475
diff
changeset
|
464 (if (fboundp sym) |
7b5946dbfb96
Drop support for generating code appropriate for Emacs 19, bytecomp.el
Aidan Kehoe <kehoea@parhasard.net>
parents:
5475
diff
changeset
|
465 (cons sym (symbol-function sym)) |
7b5946dbfb96
Drop support for generating code appropriate for Emacs 19, bytecomp.el
Aidan Kehoe <kehoea@parhasard.net>
parents:
5475
diff
changeset
|
466 sym) |
7b5946dbfb96
Drop support for generating code appropriate for Emacs 19, bytecomp.el
Aidan Kehoe <kehoea@parhasard.net>
parents:
5475
diff
changeset
|
467 save-macro-environment) |
7b5946dbfb96
Drop support for generating code appropriate for Emacs 19, bytecomp.el
Aidan Kehoe <kehoea@parhasard.net>
parents:
5475
diff
changeset
|
468 (fset sym (cons 'macro def))) |
446 | 469 finally return (eval form)) |
470 (dolist (elt save-macro-environment) | |
471 (if (symbolp elt) | |
472 (fmakunbound elt) | |
473 (fset (car elt) (cdr elt))))))) | |
474 | |
5566
4654c01af32b
Improve the implementation, documentation of #'labels, #'flet.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5562
diff
changeset
|
475 (defvar for-effect) ; ## Kludge! This should be an arg, not a special. |
4654c01af32b
Improve the implementation, documentation of #'labels, #'flet.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5562
diff
changeset
|
476 |
428 | 477 (defconst byte-compile-initial-macro-environment |
5263
0d436a78c514
Add an implementation for #'the, cl-macs.el
Aidan Kehoe <kehoea@parhasard.net>
parents:
5182
diff
changeset
|
478 `((byte-compiler-options |
0d436a78c514
Add an implementation for #'the, cl-macs.el
Aidan Kehoe <kehoea@parhasard.net>
parents:
5182
diff
changeset
|
479 . ,#'(lambda (&rest forms) |
0d436a78c514
Add an implementation for #'the, cl-macs.el
Aidan Kehoe <kehoea@parhasard.net>
parents:
5182
diff
changeset
|
480 (apply 'byte-compiler-options-handler forms))) |
0d436a78c514
Add an implementation for #'the, cl-macs.el
Aidan Kehoe <kehoea@parhasard.net>
parents:
5182
diff
changeset
|
481 (eval-when-compile |
0d436a78c514
Add an implementation for #'the, cl-macs.el
Aidan Kehoe <kehoea@parhasard.net>
parents:
5182
diff
changeset
|
482 . ,#'(lambda (&rest body) |
0d436a78c514
Add an implementation for #'the, cl-macs.el
Aidan Kehoe <kehoea@parhasard.net>
parents:
5182
diff
changeset
|
483 (list 'quote (byte-compile-eval (cons 'progn body))))) |
0d436a78c514
Add an implementation for #'the, cl-macs.el
Aidan Kehoe <kehoea@parhasard.net>
parents:
5182
diff
changeset
|
484 (eval-and-compile |
0d436a78c514
Add an implementation for #'the, cl-macs.el
Aidan Kehoe <kehoea@parhasard.net>
parents:
5182
diff
changeset
|
485 . ,#'(lambda (&rest body) |
0d436a78c514
Add an implementation for #'the, cl-macs.el
Aidan Kehoe <kehoea@parhasard.net>
parents:
5182
diff
changeset
|
486 (byte-compile-eval (cons 'progn body)) |
0d436a78c514
Add an implementation for #'the, cl-macs.el
Aidan Kehoe <kehoea@parhasard.net>
parents:
5182
diff
changeset
|
487 (cons 'progn body))) |
0d436a78c514
Add an implementation for #'the, cl-macs.el
Aidan Kehoe <kehoea@parhasard.net>
parents:
5182
diff
changeset
|
488 (the . |
5269
90a0084b3541
Rephrase the #'the docstring, make it nicer while byte-compiling.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5265
diff
changeset
|
489 ,#'(lambda (type form) |
5282
dcc34e28cd84
Warn at byte-compile in #'the if FORM constant & not TYPE; fix byte-compile-constp
Aidan Kehoe <kehoea@parhasard.net>
parents:
5269
diff
changeset
|
490 (if (cl-const-expr-p form) |
dcc34e28cd84
Warn at byte-compile in #'the if FORM constant & not TYPE; fix byte-compile-constp
Aidan Kehoe <kehoea@parhasard.net>
parents:
5269
diff
changeset
|
491 (or (eval (cl-make-type-test form type)) |
dcc34e28cd84
Warn at byte-compile in #'the if FORM constant & not TYPE; fix byte-compile-constp
Aidan Kehoe <kehoea@parhasard.net>
parents:
5269
diff
changeset
|
492 (byte-compile-warn |
dcc34e28cd84
Warn at byte-compile in #'the if FORM constant & not TYPE; fix byte-compile-constp
Aidan Kehoe <kehoea@parhasard.net>
parents:
5269
diff
changeset
|
493 "%s is not of type %s" form type))) |
5263
0d436a78c514
Add an implementation for #'the, cl-macs.el
Aidan Kehoe <kehoea@parhasard.net>
parents:
5182
diff
changeset
|
494 (if byte-compile-delete-errors |
5269
90a0084b3541
Rephrase the #'the docstring, make it nicer while byte-compiling.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5265
diff
changeset
|
495 form |
5562
855b667dea13
Drop cl-macro-environment in favour of byte-compile-macro-environment.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5560
diff
changeset
|
496 (funcall (cdr (symbol-function 'the)) type form)))) |
5574
d4f334808463
Support inlining labels, bytecomp.el.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5573
diff
changeset
|
497 (declare |
d4f334808463
Support inlining labels, bytecomp.el.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5573
diff
changeset
|
498 . ,#'(lambda (&rest specs) |
d4f334808463
Support inlining labels, bytecomp.el.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5573
diff
changeset
|
499 (while specs |
d4f334808463
Support inlining labels, bytecomp.el.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5573
diff
changeset
|
500 (if (listp cl-declare-stack) (push (car specs) cl-declare-stack)) |
d4f334808463
Support inlining labels, bytecomp.el.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5573
diff
changeset
|
501 (cl-do-proclaim (pop specs) nil)))) |
5562
855b667dea13
Drop cl-macro-environment in favour of byte-compile-macro-environment.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5560
diff
changeset
|
502 (load-time-value |
5579
3e621ba12d36
Don't byte-compile at macroexpansion time, load-time-vale.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5577
diff
changeset
|
503 . ,(symbol-macrolet ((wrapper '#:load-time-value)) |
3e621ba12d36
Don't byte-compile at macroexpansion time, load-time-vale.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5577
diff
changeset
|
504 (put wrapper 'byte-compile |
3e621ba12d36
Don't byte-compile at macroexpansion time, load-time-vale.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5577
diff
changeset
|
505 #'(lambda (form) |
3e621ba12d36
Don't byte-compile at macroexpansion time, load-time-vale.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5577
diff
changeset
|
506 (let* ((gensym (gensym)) |
3e621ba12d36
Don't byte-compile at macroexpansion time, load-time-vale.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5577
diff
changeset
|
507 (byte-compile-bound-variables |
3e621ba12d36
Don't byte-compile at macroexpansion time, load-time-vale.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5577
diff
changeset
|
508 (acons gensym byte-compile-global-bit |
3e621ba12d36
Don't byte-compile at macroexpansion time, load-time-vale.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5577
diff
changeset
|
509 byte-compile-bound-variables))) |
3e621ba12d36
Don't byte-compile at macroexpansion time, load-time-vale.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5577
diff
changeset
|
510 (setq byte-compile-output-preface |
3e621ba12d36
Don't byte-compile at macroexpansion time, load-time-vale.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5577
diff
changeset
|
511 (byte-compile-top-level |
3e621ba12d36
Don't byte-compile at macroexpansion time, load-time-vale.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5577
diff
changeset
|
512 `(progn |
3e621ba12d36
Don't byte-compile at macroexpansion time, load-time-vale.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5577
diff
changeset
|
513 (setq ,gensym (progn ,(second form))) |
3e621ba12d36
Don't byte-compile at macroexpansion time, load-time-vale.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5577
diff
changeset
|
514 ,byte-compile-output-preface) |
3e621ba12d36
Don't byte-compile at macroexpansion time, load-time-vale.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5577
diff
changeset
|
515 t 'file)) |
3e621ba12d36
Don't byte-compile at macroexpansion time, load-time-vale.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5577
diff
changeset
|
516 (byte-compile-form `(symbol-value ',gensym) nil)))) |
3e621ba12d36
Don't byte-compile at macroexpansion time, load-time-vale.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5577
diff
changeset
|
517 #'(lambda (form &optional read-only) |
3e621ba12d36
Don't byte-compile at macroexpansion time, load-time-vale.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5577
diff
changeset
|
518 (list wrapper form)))) |
5562
855b667dea13
Drop cl-macro-environment in favour of byte-compile-macro-environment.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5560
diff
changeset
|
519 (labels |
855b667dea13
Drop cl-macro-environment in favour of byte-compile-macro-environment.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5560
diff
changeset
|
520 . ,#'(lambda (bindings &rest body) |
5566
4654c01af32b
Improve the implementation, documentation of #'labels, #'flet.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5562
diff
changeset
|
521 (let* ((names (mapcar 'car bindings)) |
4654c01af32b
Improve the implementation, documentation of #'labels, #'flet.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5562
diff
changeset
|
522 (lambdas (mapcar |
4654c01af32b
Improve the implementation, documentation of #'labels, #'flet.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5562
diff
changeset
|
523 (function* |
4654c01af32b
Improve the implementation, documentation of #'labels, #'flet.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5562
diff
changeset
|
524 (lambda ((name . definition)) |
4654c01af32b
Improve the implementation, documentation of #'labels, #'flet.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5562
diff
changeset
|
525 (cons 'lambda (cdr (cl-transform-lambda |
4654c01af32b
Improve the implementation, documentation of #'labels, #'flet.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5562
diff
changeset
|
526 definition name))))) |
4654c01af32b
Improve the implementation, documentation of #'labels, #'flet.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5562
diff
changeset
|
527 bindings)) |
5562
855b667dea13
Drop cl-macro-environment in favour of byte-compile-macro-environment.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5560
diff
changeset
|
528 (placeholders |
5566
4654c01af32b
Improve the implementation, documentation of #'labels, #'flet.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5562
diff
changeset
|
529 (mapcar #'(lambda (lambda) |
4654c01af32b
Improve the implementation, documentation of #'labels, #'flet.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5562
diff
changeset
|
530 (make-byte-code (second lambda) "\xc0\x87" |
5574
d4f334808463
Support inlining labels, bytecomp.el.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5573
diff
changeset
|
531 ;; This list is used for |
d4f334808463
Support inlining labels, bytecomp.el.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5573
diff
changeset
|
532 ;; the byte-optimize |
d4f334808463
Support inlining labels, bytecomp.el.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5573
diff
changeset
|
533 ;; property, if the |
d4f334808463
Support inlining labels, bytecomp.el.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5573
diff
changeset
|
534 ;; function is to be |
d4f334808463
Support inlining labels, bytecomp.el.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5573
diff
changeset
|
535 ;; inlined. See |
d4f334808463
Support inlining labels, bytecomp.el.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5573
diff
changeset
|
536 ;; cl-do-proclaim. |
d4f334808463
Support inlining labels, bytecomp.el.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5573
diff
changeset
|
537 (vector nil) 1)) |
5566
4654c01af32b
Improve the implementation, documentation of #'labels, #'flet.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5562
diff
changeset
|
538 lambdas)) |
5562
855b667dea13
Drop cl-macro-environment in favour of byte-compile-macro-environment.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5560
diff
changeset
|
539 (byte-compile-macro-environment |
5566
4654c01af32b
Improve the implementation, documentation of #'labels, #'flet.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5562
diff
changeset
|
540 (pairlis names (mapcar |
4654c01af32b
Improve the implementation, documentation of #'labels, #'flet.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5562
diff
changeset
|
541 #'(lambda (placeholder) |
4654c01af32b
Improve the implementation, documentation of #'labels, #'flet.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5562
diff
changeset
|
542 `(lambda (&rest cl-labels-args) |
5574
d4f334808463
Support inlining labels, bytecomp.el.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5573
diff
changeset
|
543 ;; Be careful not to quote |
d4f334808463
Support inlining labels, bytecomp.el.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5573
diff
changeset
|
544 ;; PLACEHOLDER, otherwise |
d4f334808463
Support inlining labels, bytecomp.el.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5573
diff
changeset
|
545 ;; byte-optimize-funcall inlines |
d4f334808463
Support inlining labels, bytecomp.el.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5573
diff
changeset
|
546 ;; it. |
5566
4654c01af32b
Improve the implementation, documentation of #'labels, #'flet.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5562
diff
changeset
|
547 (list* 'funcall ,placeholder |
4654c01af32b
Improve the implementation, documentation of #'labels, #'flet.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5562
diff
changeset
|
548 cl-labels-args))) |
4654c01af32b
Improve the implementation, documentation of #'labels, #'flet.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5562
diff
changeset
|
549 placeholders) |
4654c01af32b
Improve the implementation, documentation of #'labels, #'flet.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5562
diff
changeset
|
550 byte-compile-macro-environment)) |
4654c01af32b
Improve the implementation, documentation of #'labels, #'flet.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5562
diff
changeset
|
551 (gensym (gensym))) |
5574
d4f334808463
Support inlining labels, bytecomp.el.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5573
diff
changeset
|
552 (labels |
d4f334808463
Support inlining labels, bytecomp.el.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5573
diff
changeset
|
553 ((byte-compile-transform-labels (form names lambdas |
d4f334808463
Support inlining labels, bytecomp.el.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5573
diff
changeset
|
554 placeholders) |
d4f334808463
Support inlining labels, bytecomp.el.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5573
diff
changeset
|
555 (let* ((inline |
d4f334808463
Support inlining labels, bytecomp.el.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5573
diff
changeset
|
556 (mapcan |
d4f334808463
Support inlining labels, bytecomp.el.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5573
diff
changeset
|
557 #'(lambda (name placeholder lambda) |
d4f334808463
Support inlining labels, bytecomp.el.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5573
diff
changeset
|
558 (and |
d4f334808463
Support inlining labels, bytecomp.el.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5573
diff
changeset
|
559 (eq |
d4f334808463
Support inlining labels, bytecomp.el.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5573
diff
changeset
|
560 (getf (aref |
d4f334808463
Support inlining labels, bytecomp.el.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5573
diff
changeset
|
561 (compiled-function-constants |
d4f334808463
Support inlining labels, bytecomp.el.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5573
diff
changeset
|
562 placeholder) 0) |
d4f334808463
Support inlining labels, bytecomp.el.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5573
diff
changeset
|
563 'byte-optimizer) |
d4f334808463
Support inlining labels, bytecomp.el.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5573
diff
changeset
|
564 'byte-compile-inline-expand) |
d4f334808463
Support inlining labels, bytecomp.el.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5573
diff
changeset
|
565 `(((function ,placeholder) |
5593
4218b56833b3
Give the label name when warning or erroring, bytecomp.el
Aidan Kehoe <kehoea@parhasard.net>
parents:
5579
diff
changeset
|
566 ,(byte-compile-lambda lambda name) |
5574
d4f334808463
Support inlining labels, bytecomp.el.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5573
diff
changeset
|
567 (function ,lambda))))) |
d4f334808463
Support inlining labels, bytecomp.el.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5573
diff
changeset
|
568 names placeholders lambdas)) |
d4f334808463
Support inlining labels, bytecomp.el.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5573
diff
changeset
|
569 (compiled |
5593
4218b56833b3
Give the label name when warning or erroring, bytecomp.el
Aidan Kehoe <kehoea@parhasard.net>
parents:
5579
diff
changeset
|
570 (mapcar* #'byte-compile-lambda |
4218b56833b3
Give the label name when warning or erroring, bytecomp.el
Aidan Kehoe <kehoea@parhasard.net>
parents:
5579
diff
changeset
|
571 (if (not inline) |
4218b56833b3
Give the label name when warning or erroring, bytecomp.el
Aidan Kehoe <kehoea@parhasard.net>
parents:
5579
diff
changeset
|
572 lambdas |
4218b56833b3
Give the label name when warning or erroring, bytecomp.el
Aidan Kehoe <kehoea@parhasard.net>
parents:
5579
diff
changeset
|
573 ;; See further down for the |
5574
d4f334808463
Support inlining labels, bytecomp.el.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5573
diff
changeset
|
574 ;; rationale of the sublis calls. |
5593
4218b56833b3
Give the label name when warning or erroring, bytecomp.el
Aidan Kehoe <kehoea@parhasard.net>
parents:
5579
diff
changeset
|
575 (sublis (pairlis |
4218b56833b3
Give the label name when warning or erroring, bytecomp.el
Aidan Kehoe <kehoea@parhasard.net>
parents:
5579
diff
changeset
|
576 (mapcar #'cadar inline) |
4218b56833b3
Give the label name when warning or erroring, bytecomp.el
Aidan Kehoe <kehoea@parhasard.net>
parents:
5579
diff
changeset
|
577 (mapcar #'third inline)) |
4218b56833b3
Give the label name when warning or erroring, bytecomp.el
Aidan Kehoe <kehoea@parhasard.net>
parents:
5579
diff
changeset
|
578 (sublis |
4218b56833b3
Give the label name when warning or erroring, bytecomp.el
Aidan Kehoe <kehoea@parhasard.net>
parents:
5579
diff
changeset
|
579 (pairlis |
4218b56833b3
Give the label name when warning or erroring, bytecomp.el
Aidan Kehoe <kehoea@parhasard.net>
parents:
5579
diff
changeset
|
580 (mapcar #'car inline) |
4218b56833b3
Give the label name when warning or erroring, bytecomp.el
Aidan Kehoe <kehoea@parhasard.net>
parents:
5579
diff
changeset
|
581 (mapcar #'second inline)) |
4218b56833b3
Give the label name when warning or erroring, bytecomp.el
Aidan Kehoe <kehoea@parhasard.net>
parents:
5579
diff
changeset
|
582 lambdas :test #'equal) |
4218b56833b3
Give the label name when warning or erroring, bytecomp.el
Aidan Kehoe <kehoea@parhasard.net>
parents:
5579
diff
changeset
|
583 :test #'eq)) |
4218b56833b3
Give the label name when warning or erroring, bytecomp.el
Aidan Kehoe <kehoea@parhasard.net>
parents:
5579
diff
changeset
|
584 names)) |
5574
d4f334808463
Support inlining labels, bytecomp.el.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5573
diff
changeset
|
585 elt) |
d4f334808463
Support inlining labels, bytecomp.el.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5573
diff
changeset
|
586 (mapc #'(lambda (placeholder function) |
d4f334808463
Support inlining labels, bytecomp.el.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5573
diff
changeset
|
587 (nsubst function placeholder compiled |
d4f334808463
Support inlining labels, bytecomp.el.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5573
diff
changeset
|
588 :test #'eq |
d4f334808463
Support inlining labels, bytecomp.el.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5573
diff
changeset
|
589 :descend-structures t)) |
d4f334808463
Support inlining labels, bytecomp.el.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5573
diff
changeset
|
590 placeholders compiled) |
d4f334808463
Support inlining labels, bytecomp.el.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5573
diff
changeset
|
591 (when inline |
d4f334808463
Support inlining labels, bytecomp.el.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5573
diff
changeset
|
592 (dolist (triad inline) |
d4f334808463
Support inlining labels, bytecomp.el.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5573
diff
changeset
|
593 (nsubst (setq elt (elt compiled |
d4f334808463
Support inlining labels, bytecomp.el.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5573
diff
changeset
|
594 (position (cadar triad) |
d4f334808463
Support inlining labels, bytecomp.el.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5573
diff
changeset
|
595 placeholders))) |
d4f334808463
Support inlining labels, bytecomp.el.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5573
diff
changeset
|
596 (second triad) compiled :test #'eq |
d4f334808463
Support inlining labels, bytecomp.el.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5573
diff
changeset
|
597 :descend-structures t) |
d4f334808463
Support inlining labels, bytecomp.el.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5573
diff
changeset
|
598 (setf (second triad) elt)) |
d4f334808463
Support inlining labels, bytecomp.el.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5573
diff
changeset
|
599 ;; For inlined labels: first, replace uses of |
d4f334808463
Support inlining labels, bytecomp.el.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5573
diff
changeset
|
600 ;; the placeholder in places where it's not an |
d4f334808463
Support inlining labels, bytecomp.el.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5573
diff
changeset
|
601 ;; evident, explicit funcall (that is, where |
d4f334808463
Support inlining labels, bytecomp.el.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5573
diff
changeset
|
602 ;; it is not to be inlined) with the compiled |
d4f334808463
Support inlining labels, bytecomp.el.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5573
diff
changeset
|
603 ;; function: |
d4f334808463
Support inlining labels, bytecomp.el.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5573
diff
changeset
|
604 (setq form (sublis |
d4f334808463
Support inlining labels, bytecomp.el.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5573
diff
changeset
|
605 (pairlis (mapcar #'car inline) |
d4f334808463
Support inlining labels, bytecomp.el.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5573
diff
changeset
|
606 (mapcar #'second inline)) |
d4f334808463
Support inlining labels, bytecomp.el.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5573
diff
changeset
|
607 form :test #'equal) |
d4f334808463
Support inlining labels, bytecomp.el.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5573
diff
changeset
|
608 ;; Now replace uses of the placeholder |
d4f334808463
Support inlining labels, bytecomp.el.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5573
diff
changeset
|
609 ;; where it is an evident funcall with the |
d4f334808463
Support inlining labels, bytecomp.el.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5573
diff
changeset
|
610 ;; lambda, quoted as a function, to allow |
d4f334808463
Support inlining labels, bytecomp.el.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5573
diff
changeset
|
611 ;; byte-optimize-funcall to do its |
d4f334808463
Support inlining labels, bytecomp.el.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5573
diff
changeset
|
612 ;; thing. Note that the lambdas still have |
d4f334808463
Support inlining labels, bytecomp.el.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5573
diff
changeset
|
613 ;; the placeholders, so there's no risk |
d4f334808463
Support inlining labels, bytecomp.el.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5573
diff
changeset
|
614 ;; of recursive inlining. |
d4f334808463
Support inlining labels, bytecomp.el.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5573
diff
changeset
|
615 form (sublis (pairlis |
d4f334808463
Support inlining labels, bytecomp.el.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5573
diff
changeset
|
616 (mapcar #'cadar inline) |
d4f334808463
Support inlining labels, bytecomp.el.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5573
diff
changeset
|
617 (mapcar #'third inline)) |
d4f334808463
Support inlining labels, bytecomp.el.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5573
diff
changeset
|
618 form :test #'eq))) |
d4f334808463
Support inlining labels, bytecomp.el.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5573
diff
changeset
|
619 (sublis (pairlis placeholders compiled) form |
d4f334808463
Support inlining labels, bytecomp.el.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5573
diff
changeset
|
620 :test #'eq)))) |
d4f334808463
Support inlining labels, bytecomp.el.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5573
diff
changeset
|
621 (put gensym 'byte-compile |
d4f334808463
Support inlining labels, bytecomp.el.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5573
diff
changeset
|
622 #'(lambda (form) |
d4f334808463
Support inlining labels, bytecomp.el.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5573
diff
changeset
|
623 (let* ((names (cadr (cl-pop2 form))) |
d4f334808463
Support inlining labels, bytecomp.el.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5573
diff
changeset
|
624 (lambdas (mapcar #'cadr (cdr (pop form)))) |
d4f334808463
Support inlining labels, bytecomp.el.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5573
diff
changeset
|
625 (placeholders (cadr (pop form)))) |
d4f334808463
Support inlining labels, bytecomp.el.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5573
diff
changeset
|
626 (byte-compile-body-do-effect |
d4f334808463
Support inlining labels, bytecomp.el.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5573
diff
changeset
|
627 (byte-compile-transform-labels form names |
d4f334808463
Support inlining labels, bytecomp.el.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5573
diff
changeset
|
628 lambdas |
d4f334808463
Support inlining labels, bytecomp.el.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5573
diff
changeset
|
629 placeholders))))) |
d4f334808463
Support inlining labels, bytecomp.el.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5573
diff
changeset
|
630 (put gensym 'byte-hunk-handler |
d4f334808463
Support inlining labels, bytecomp.el.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5573
diff
changeset
|
631 #'(lambda (form) |
d4f334808463
Support inlining labels, bytecomp.el.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5573
diff
changeset
|
632 (let* ((names (cadr (cl-pop2 form))) |
d4f334808463
Support inlining labels, bytecomp.el.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5573
diff
changeset
|
633 (lambdas (mapcar #'cadr (cdr (pop form)))) |
d4f334808463
Support inlining labels, bytecomp.el.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5573
diff
changeset
|
634 (placeholders (cadr (pop form)))) |
d4f334808463
Support inlining labels, bytecomp.el.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5573
diff
changeset
|
635 (byte-compile-file-form |
d4f334808463
Support inlining labels, bytecomp.el.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5573
diff
changeset
|
636 (cons 'progn |
d4f334808463
Support inlining labels, bytecomp.el.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5573
diff
changeset
|
637 (byte-compile-transform-labels |
d4f334808463
Support inlining labels, bytecomp.el.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5573
diff
changeset
|
638 form names lambdas placeholders)))))) |
5612
2c20bc575989
Use the old #'labels implementation if #'lexical-let changes lambdas.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5593
diff
changeset
|
639 (setq body |
2c20bc575989
Use the old #'labels implementation if #'lexical-let changes lambdas.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5593
diff
changeset
|
640 (cl-macroexpand-all `(,gensym ',names (list ,@lambdas) |
2c20bc575989
Use the old #'labels implementation if #'lexical-let changes lambdas.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5593
diff
changeset
|
641 ',placeholders ,@body) |
2c20bc575989
Use the old #'labels implementation if #'lexical-let changes lambdas.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5593
diff
changeset
|
642 byte-compile-macro-environment)) |
2c20bc575989
Use the old #'labels implementation if #'lexical-let changes lambdas.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5593
diff
changeset
|
643 (if (position 'lambda (mapcar #'(lambda (object) |
2c20bc575989
Use the old #'labels implementation if #'lexical-let changes lambdas.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5593
diff
changeset
|
644 (car-safe (cdr-safe |
2c20bc575989
Use the old #'labels implementation if #'lexical-let changes lambdas.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5593
diff
changeset
|
645 object))) |
2c20bc575989
Use the old #'labels implementation if #'lexical-let changes lambdas.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5593
diff
changeset
|
646 (cdr (third body))) |
2c20bc575989
Use the old #'labels implementation if #'lexical-let changes lambdas.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5593
diff
changeset
|
647 :key #'car-safe :test-not #'eq) |
2c20bc575989
Use the old #'labels implementation if #'lexical-let changes lambdas.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5593
diff
changeset
|
648 ;; #'lexical-let has worked its magic, not all the |
2c20bc575989
Use the old #'labels implementation if #'lexical-let changes lambdas.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5593
diff
changeset
|
649 ;; lambdas are lambdas. Give up on pre-compiling the |
2c20bc575989
Use the old #'labels implementation if #'lexical-let changes lambdas.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5593
diff
changeset
|
650 ;; labels. |
2c20bc575989
Use the old #'labels implementation if #'lexical-let changes lambdas.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5593
diff
changeset
|
651 (setq names (mapcar #'copy-symbol names) |
2c20bc575989
Use the old #'labels implementation if #'lexical-let changes lambdas.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5593
diff
changeset
|
652 lambdas (cdr (third body)) |
2c20bc575989
Use the old #'labels implementation if #'lexical-let changes lambdas.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5593
diff
changeset
|
653 body (sublis (pairlis placeholders names) |
2c20bc575989
Use the old #'labels implementation if #'lexical-let changes lambdas.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5593
diff
changeset
|
654 (nthcdr 4 body) :test #'eq) |
2c20bc575989
Use the old #'labels implementation if #'lexical-let changes lambdas.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5593
diff
changeset
|
655 lambdas (sublis (pairlis placeholders names) |
2c20bc575989
Use the old #'labels implementation if #'lexical-let changes lambdas.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5593
diff
changeset
|
656 lambdas :test #'eq) |
2c20bc575989
Use the old #'labels implementation if #'lexical-let changes lambdas.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5593
diff
changeset
|
657 body (cl-macroexpand-all |
2c20bc575989
Use the old #'labels implementation if #'lexical-let changes lambdas.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5593
diff
changeset
|
658 `(lexical-let |
2c20bc575989
Use the old #'labels implementation if #'lexical-let changes lambdas.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5593
diff
changeset
|
659 ,names |
2c20bc575989
Use the old #'labels implementation if #'lexical-let changes lambdas.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5593
diff
changeset
|
660 (setf ,@(mapcan #'list names lambdas)) |
2c20bc575989
Use the old #'labels implementation if #'lexical-let changes lambdas.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5593
diff
changeset
|
661 ,@body) |
2c20bc575989
Use the old #'labels implementation if #'lexical-let changes lambdas.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5593
diff
changeset
|
662 byte-compile-macro-environment)) |
2c20bc575989
Use the old #'labels implementation if #'lexical-let changes lambdas.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5593
diff
changeset
|
663 body))))) |
5566
4654c01af32b
Improve the implementation, documentation of #'labels, #'flet.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5562
diff
changeset
|
664 (flet . |
4654c01af32b
Improve the implementation, documentation of #'labels, #'flet.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5562
diff
changeset
|
665 ,#'(lambda (bindings &rest body) |
4654c01af32b
Improve the implementation, documentation of #'labels, #'flet.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5562
diff
changeset
|
666 (let* ((names (mapcar 'car bindings)) |
4654c01af32b
Improve the implementation, documentation of #'labels, #'flet.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5562
diff
changeset
|
667 (lambdas (mapcar |
4654c01af32b
Improve the implementation, documentation of #'labels, #'flet.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5562
diff
changeset
|
668 (function* |
4654c01af32b
Improve the implementation, documentation of #'labels, #'flet.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5562
diff
changeset
|
669 (lambda ((function . definition)) |
4654c01af32b
Improve the implementation, documentation of #'labels, #'flet.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5562
diff
changeset
|
670 (cons 'lambda (cdr (cl-transform-lambda |
4654c01af32b
Improve the implementation, documentation of #'labels, #'flet.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5562
diff
changeset
|
671 definition function))))) |
4654c01af32b
Improve the implementation, documentation of #'labels, #'flet.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5562
diff
changeset
|
672 bindings)) |
4654c01af32b
Improve the implementation, documentation of #'labels, #'flet.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5562
diff
changeset
|
673 (gensym (gensym))) |
4654c01af32b
Improve the implementation, documentation of #'labels, #'flet.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5562
diff
changeset
|
674 (put gensym 'byte-compile-flet-environment |
4654c01af32b
Improve the implementation, documentation of #'labels, #'flet.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5562
diff
changeset
|
675 (pairlis names lambdas)) |
4654c01af32b
Improve the implementation, documentation of #'labels, #'flet.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5562
diff
changeset
|
676 (put gensym 'byte-compile |
4654c01af32b
Improve the implementation, documentation of #'labels, #'flet.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5562
diff
changeset
|
677 #'(lambda (form) |
4654c01af32b
Improve the implementation, documentation of #'labels, #'flet.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5562
diff
changeset
|
678 (let* ((byte-compile-flet-environment |
4654c01af32b
Improve the implementation, documentation of #'labels, #'flet.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5562
diff
changeset
|
679 (get (car form) 'byte-compile-flet-environment)) |
4654c01af32b
Improve the implementation, documentation of #'labels, #'flet.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5562
diff
changeset
|
680 (byte-compile-function-environment |
4654c01af32b
Improve the implementation, documentation of #'labels, #'flet.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5562
diff
changeset
|
681 (append byte-compile-flet-environment |
4654c01af32b
Improve the implementation, documentation of #'labels, #'flet.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5562
diff
changeset
|
682 byte-compile-function-environment)) |
4654c01af32b
Improve the implementation, documentation of #'labels, #'flet.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5562
diff
changeset
|
683 name) |
4654c01af32b
Improve the implementation, documentation of #'labels, #'flet.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5562
diff
changeset
|
684 (dolist (acons byte-compile-flet-environment) |
4654c01af32b
Improve the implementation, documentation of #'labels, #'flet.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5562
diff
changeset
|
685 (setq name (car acons)) |
4654c01af32b
Improve the implementation, documentation of #'labels, #'flet.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5562
diff
changeset
|
686 (if (and (memq 'redefine byte-compile-warnings) |
4654c01af32b
Improve the implementation, documentation of #'labels, #'flet.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5562
diff
changeset
|
687 (or (cdr |
4654c01af32b
Improve the implementation, documentation of #'labels, #'flet.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5562
diff
changeset
|
688 (assq name |
4654c01af32b
Improve the implementation, documentation of #'labels, #'flet.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5562
diff
changeset
|
689 byte-compile-macro-environment)) |
4654c01af32b
Improve the implementation, documentation of #'labels, #'flet.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5562
diff
changeset
|
690 (eq 'macro |
4654c01af32b
Improve the implementation, documentation of #'labels, #'flet.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5562
diff
changeset
|
691 (ignore-errors |
4654c01af32b
Improve the implementation, documentation of #'labels, #'flet.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5562
diff
changeset
|
692 (car (symbol-function name)))))) |
4654c01af32b
Improve the implementation, documentation of #'labels, #'flet.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5562
diff
changeset
|
693 ;; XEmacs change; this is a warning, not an |
4654c01af32b
Improve the implementation, documentation of #'labels, #'flet.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5562
diff
changeset
|
694 ;; error. The only use case for #'flet instead |
4654c01af32b
Improve the implementation, documentation of #'labels, #'flet.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5562
diff
changeset
|
695 ;; of #'labels is to shadow a dynamically |
4654c01af32b
Improve the implementation, documentation of #'labels, #'flet.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5562
diff
changeset
|
696 ;; bound function at runtime, and it's |
4654c01af32b
Improve the implementation, documentation of #'labels, #'flet.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5562
diff
changeset
|
697 ;; reasonable to do this even if that symbol |
4654c01af32b
Improve the implementation, documentation of #'labels, #'flet.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5562
diff
changeset
|
698 ;; has a macro binding at compile time. |
4654c01af32b
Improve the implementation, documentation of #'labels, #'flet.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5562
diff
changeset
|
699 (byte-compile-warn |
4654c01af32b
Improve the implementation, documentation of #'labels, #'flet.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5562
diff
changeset
|
700 "flet: redefining macro %s as a function" |
4654c01af32b
Improve the implementation, documentation of #'labels, #'flet.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5562
diff
changeset
|
701 name)) |
4654c01af32b
Improve the implementation, documentation of #'labels, #'flet.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5562
diff
changeset
|
702 (if (get name 'byte-opcode) |
4654c01af32b
Improve the implementation, documentation of #'labels, #'flet.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5562
diff
changeset
|
703 (byte-compile-warn |
4654c01af32b
Improve the implementation, documentation of #'labels, #'flet.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5562
diff
changeset
|
704 "flet: %s has a byte code, consider #'labels" |
4654c01af32b
Improve the implementation, documentation of #'labels, #'flet.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5562
diff
changeset
|
705 name)) |
4654c01af32b
Improve the implementation, documentation of #'labels, #'flet.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5562
diff
changeset
|
706 (if (get name 'byte-compile) |
4654c01af32b
Improve the implementation, documentation of #'labels, #'flet.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5562
diff
changeset
|
707 (byte-compile-warn |
4654c01af32b
Improve the implementation, documentation of #'labels, #'flet.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5562
diff
changeset
|
708 "flet: %s has a byte-compile method, |
4654c01af32b
Improve the implementation, documentation of #'labels, #'flet.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5562
diff
changeset
|
709 consider #'labels" name))) |
4654c01af32b
Improve the implementation, documentation of #'labels, #'flet.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5562
diff
changeset
|
710 (byte-compile-form (second form))))) |
4654c01af32b
Improve the implementation, documentation of #'labels, #'flet.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5562
diff
changeset
|
711 `(,gensym (letf* ,(mapcar* #'(lambda (name lambda) |
4654c01af32b
Improve the implementation, documentation of #'labels, #'flet.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5562
diff
changeset
|
712 `((symbol-function ',name) |
4654c01af32b
Improve the implementation, documentation of #'labels, #'flet.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5562
diff
changeset
|
713 ,lambda)) names lambdas) |
4654c01af32b
Improve the implementation, documentation of #'labels, #'flet.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5562
diff
changeset
|
714 ,@body)))))) |
4654c01af32b
Improve the implementation, documentation of #'labels, #'flet.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5562
diff
changeset
|
715 |
428 | 716 "The default macro-environment passed to macroexpand by the compiler. |
717 Placing a macro here will cause a macro to have different semantics when | |
718 expanded by the compiler as when expanded by the interpreter.") | |
719 | |
720 (defvar byte-compile-function-environment nil | |
721 "Alist of functions defined in the file being compiled. | |
722 This is so we can inline them when necessary. | |
723 Each element looks like (FUNCTIONNAME . DEFINITION). It is | |
724 \(FUNCTIONNAME . nil) when a function is redefined as a macro.") | |
725 | |
726 (defvar byte-compile-autoload-environment nil | |
727 "Alist of functions and macros defined by autoload in the file being compiled. | |
728 This is so we can suppress warnings about calls to these functions, even though | |
729 they do not have `real' definitions. | |
730 Each element looks like (FUNCTIONNAME . CALL-TO-AUTOLOAD).") | |
731 | |
732 (defvar byte-compile-unresolved-functions nil | |
733 "Alist of undefined functions to which calls have been compiled (used for | |
734 warnings when the function is later defined with incorrect args).") | |
735 | |
736 (defvar byte-compile-file-domain) ; domain of file being compiled | |
737 | |
738 (defvar byte-compile-tag-number 0) | |
739 (defvar byte-compile-output nil | |
740 "Alist describing contents to put in byte code string. | |
741 Each element is (INDEX . VALUE)") | |
742 (defvar byte-compile-depth 0 "Current depth of execution stack.") | |
743 (defvar byte-compile-maxdepth 0 "Maximum depth of execution stack.") | |
744 | |
745 | |
746 ;;; The byte codes; this information is duplicated in bytecode.c | |
747 | |
748 (defconst byte-code-vector nil | |
749 "An array containing byte-code names indexed by byte-code values.") | |
750 | |
751 (defconst byte-stack+-info nil | |
752 "An array with the stack adjustment for each byte-code.") | |
753 | |
754 (defmacro byte-defop (opcode stack-adjust opname &optional docstring) | |
755 ;; This is a speed-hack for building the byte-code-vector at compile-time. | |
756 ;; We fill in the vector at macroexpand-time, and then after the last call | |
757 ;; to byte-defop, we write the vector out as a constant instead of writing | |
758 ;; out a bunch of calls to aset. | |
759 ;; Actually, we don't fill in the vector itself, because that could make | |
760 ;; it problematic to compile big changes to this compiler; we store the | |
761 ;; values on its plist, and remove them later in -extrude. | |
762 (let ((v1 (or (get 'byte-code-vector 'tmp-compile-time-value) | |
763 (put 'byte-code-vector 'tmp-compile-time-value | |
764 (make-vector 256 nil)))) | |
765 (v2 (or (get 'byte-stack+-info 'tmp-compile-time-value) | |
766 (put 'byte-stack+-info 'tmp-compile-time-value | |
767 (make-vector 256 nil))))) | |
768 (aset v1 opcode opname) | |
769 (aset v2 opcode stack-adjust)) | |
770 (if docstring | |
771 (list 'defconst opname opcode (concat "Byte code opcode " docstring ".")) | |
772 (list 'defconst opname opcode))) | |
773 | |
774 (defmacro byte-extrude-byte-code-vectors () | |
775 (prog1 (list 'setq 'byte-code-vector | |
776 (get 'byte-code-vector 'tmp-compile-time-value) | |
777 'byte-stack+-info | |
778 (get 'byte-stack+-info 'tmp-compile-time-value)) | |
779 (remprop 'byte-code-vector 'tmp-compile-time-value) | |
780 (remprop 'byte-stack+-info 'tmp-compile-time-value))) | |
781 | |
782 | |
783 ;; unused: 0-7 | |
784 | |
785 ;; These opcodes are special in that they pack their argument into the | |
786 ;; opcode word. | |
787 ;; | |
788 (byte-defop 8 1 byte-varref "for variable reference") | |
789 (byte-defop 16 -1 byte-varset "for setting a variable") | |
790 (byte-defop 24 -1 byte-varbind "for binding a variable") | |
791 (byte-defop 32 0 byte-call "for calling a function") | |
792 (byte-defop 40 0 byte-unbind "for unbinding special bindings") | |
793 ;; codes 8-47 are consumed by the preceding opcodes | |
794 | |
795 ;; unused: 48-55 | |
796 | |
797 (byte-defop 56 -1 byte-nth) | |
798 (byte-defop 57 0 byte-symbolp) | |
799 (byte-defop 58 0 byte-consp) | |
800 (byte-defop 59 0 byte-stringp) | |
801 (byte-defop 60 0 byte-listp) | |
802 (byte-defop 61 -1 byte-old-eq) | |
803 (byte-defop 62 -1 byte-old-memq) | |
804 (byte-defop 63 0 byte-not) | |
805 (byte-defop 64 0 byte-car) | |
806 (byte-defop 65 0 byte-cdr) | |
807 (byte-defop 66 -1 byte-cons) | |
808 (byte-defop 67 0 byte-list1) | |
809 (byte-defop 68 -1 byte-list2) | |
810 (byte-defop 69 -2 byte-list3) | |
811 (byte-defop 70 -3 byte-list4) | |
812 (byte-defop 71 0 byte-length) | |
813 (byte-defop 72 -1 byte-aref) | |
814 (byte-defop 73 -2 byte-aset) | |
815 (byte-defop 74 0 byte-symbol-value) | |
816 (byte-defop 75 0 byte-symbol-function) ; this was commented out | |
817 (byte-defop 76 -1 byte-set) | |
818 (byte-defop 77 -1 byte-fset) ; this was commented out | |
819 (byte-defop 78 -1 byte-get) | |
5089
99f8ebc082d9
Make #'substring an alias of #'subseq; give the latter the byte code.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4996
diff
changeset
|
820 (byte-defop 79 -2 byte-subseq) |
428 | 821 (byte-defop 80 -1 byte-concat2) |
822 (byte-defop 81 -2 byte-concat3) | |
823 (byte-defop 82 -3 byte-concat4) | |
824 (byte-defop 83 0 byte-sub1) | |
825 (byte-defop 84 0 byte-add1) | |
826 (byte-defop 85 -1 byte-eqlsign) | |
827 (byte-defop 86 -1 byte-gtr) | |
828 (byte-defop 87 -1 byte-lss) | |
829 (byte-defop 88 -1 byte-leq) | |
830 (byte-defop 89 -1 byte-geq) | |
831 (byte-defop 90 -1 byte-diff) | |
832 (byte-defop 91 0 byte-negate) | |
833 (byte-defop 92 -1 byte-plus) | |
834 (byte-defop 93 -1 byte-max) | |
835 (byte-defop 94 -1 byte-min) | |
836 (byte-defop 95 -1 byte-mult) | |
837 (byte-defop 96 1 byte-point) | |
838 (byte-defop 97 -1 byte-eq) ; new as of v20 | |
839 (byte-defop 98 0 byte-goto-char) | |
840 (byte-defop 99 0 byte-insert) | |
841 (byte-defop 100 1 byte-point-max) | |
842 (byte-defop 101 1 byte-point-min) | |
843 (byte-defop 102 0 byte-char-after) | |
844 (byte-defop 103 1 byte-following-char) | |
845 (byte-defop 104 1 byte-preceding-char) | |
846 (byte-defop 105 1 byte-current-column) | |
847 (byte-defop 106 0 byte-indent-to) | |
848 (byte-defop 107 -1 byte-equal) ; new as of v20 | |
849 (byte-defop 108 1 byte-eolp) | |
850 (byte-defop 109 1 byte-eobp) | |
851 (byte-defop 110 1 byte-bolp) | |
852 (byte-defop 111 1 byte-bobp) | |
853 (byte-defop 112 1 byte-current-buffer) | |
854 (byte-defop 113 0 byte-set-buffer) | |
855 (byte-defop 114 0 byte-save-current-buffer | |
856 "To make a binding to record the current buffer.") | |
857 ;;(byte-defop 114 1 byte-read-char-OBSOLETE) ;obsolete as of v19 | |
858 (byte-defop 115 -1 byte-memq) ; new as of v20 | |
859 (byte-defop 116 1 byte-interactive-p) | |
860 | |
861 (byte-defop 117 0 byte-forward-char) | |
862 (byte-defop 118 0 byte-forward-word) | |
863 (byte-defop 119 -1 byte-skip-chars-forward) | |
864 (byte-defop 120 -1 byte-skip-chars-backward) | |
865 (byte-defop 121 0 byte-forward-line) | |
866 (byte-defop 122 0 byte-char-syntax) | |
867 (byte-defop 123 -1 byte-buffer-substring) | |
868 (byte-defop 124 -1 byte-delete-region) | |
869 (byte-defop 125 -1 byte-narrow-to-region) | |
870 (byte-defop 126 1 byte-widen) | |
871 (byte-defop 127 0 byte-end-of-line) | |
872 | |
873 ;; unused: 128 | |
874 | |
875 ;; These store their argument in the next two bytes | |
876 (byte-defop 129 1 byte-constant2 | |
877 "for reference to a constant with vector index >= byte-constant-limit") | |
878 (byte-defop 130 0 byte-goto "for unconditional jump") | |
879 (byte-defop 131 -1 byte-goto-if-nil "to pop value and jump if it's nil") | |
880 (byte-defop 132 -1 byte-goto-if-not-nil | |
881 "to pop value and jump if it's not nil") | |
882 (byte-defop 133 -1 byte-goto-if-nil-else-pop | |
883 "to examine top-of-stack, jump and don't pop it if it's nil, | |
884 otherwise pop it") | |
885 (byte-defop 134 -1 byte-goto-if-not-nil-else-pop | |
886 "to examine top-of-stack, jump and don't pop it if it's non-nil, | |
887 otherwise pop it") | |
888 | |
889 (byte-defop 135 -1 byte-return "to pop a value and return it from `byte-code'") | |
890 (byte-defop 136 -1 byte-discard "to discard one value from stack") | |
891 (byte-defop 137 1 byte-dup "to duplicate the top of the stack") | |
892 | |
893 (byte-defop 138 0 byte-save-excursion | |
894 "to make a binding to record the buffer, point and mark") | |
4775
1d61580e0cf7
Remove Fsave_window_excursion from window.c, it's overridden by Lisp.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4743
diff
changeset
|
895 (byte-defop 139 0 byte-save-window-excursion ; almost obsolete |
428 | 896 "to make a binding to record entire window configuration") |
897 (byte-defop 140 0 byte-save-restriction | |
898 "to make a binding to record the current buffer clipping restrictions") | |
899 (byte-defop 141 -1 byte-catch | |
900 "for catch. Takes, on stack, the tag and an expression for the body") | |
901 (byte-defop 142 -1 byte-unwind-protect | |
902 "for unwind-protect. Takes, on stack, an expression for the unwind-action") | |
903 | |
904 ;; For condition-case. Takes, on stack, the variable to bind, | |
905 ;; an expression for the body, and a list of clauses. | |
906 (byte-defop 143 -2 byte-condition-case) | |
907 | |
908 ;; For entry to with-output-to-temp-buffer. | |
909 ;; Takes, on stack, the buffer name. | |
910 ;; Binds standard-output and does some other things. | |
911 ;; Returns with temp buffer on the stack in place of buffer name. | |
912 (byte-defop 144 0 byte-temp-output-buffer-setup) | |
913 | |
914 ;; For exit from with-output-to-temp-buffer. | |
915 ;; Expects the temp buffer on the stack underneath value to return. | |
916 ;; Pops them both, then pushes the value back on. | |
917 ;; Unbinds standard-output and makes the temp buffer visible. | |
918 (byte-defop 145 -1 byte-temp-output-buffer-show) | |
919 | |
920 ;; To unbind back to the beginning of this frame. | |
921 ;; Not used yet, but will be needed for tail-recursion elimination. | |
922 (byte-defop 146 0 byte-unbind-all) | |
923 | |
924 (byte-defop 147 -2 byte-set-marker) | |
925 (byte-defop 148 0 byte-match-beginning) | |
926 (byte-defop 149 0 byte-match-end) | |
927 (byte-defop 150 0 byte-upcase) | |
928 (byte-defop 151 0 byte-downcase) | |
929 (byte-defop 152 -1 byte-string=) | |
930 (byte-defop 153 -1 byte-string<) | |
931 (byte-defop 154 -1 byte-old-equal) | |
932 (byte-defop 155 -1 byte-nthcdr) | |
933 (byte-defop 156 -1 byte-elt) | |
934 (byte-defop 157 -1 byte-old-member) | |
935 (byte-defop 158 -1 byte-old-assq) | |
936 (byte-defop 159 0 byte-nreverse) | |
937 (byte-defop 160 -1 byte-setcar) | |
938 (byte-defop 161 -1 byte-setcdr) | |
939 (byte-defop 162 0 byte-car-safe) | |
940 (byte-defop 163 0 byte-cdr-safe) | |
941 (byte-defop 164 -1 byte-nconc) | |
942 (byte-defop 165 -1 byte-quo) | |
943 (byte-defop 166 -1 byte-rem) | |
944 (byte-defop 167 0 byte-numberp) | |
4885
6772ce4d982b
Fix hash tables, #'member*, #'assoc*, #'eql compiler macros if bignums
Aidan Kehoe <kehoea@parhasard.net>
parents:
4783
diff
changeset
|
945 (byte-defop 168 0 byte-fixnump) |
428 | 946 |
947 ;; unused: 169 | |
948 | |
949 ;; These are not present in FSF. | |
950 ;; | |
951 (byte-defop 170 0 byte-rel-goto) | |
952 (byte-defop 171 -1 byte-rel-goto-if-nil) | |
953 (byte-defop 172 -1 byte-rel-goto-if-not-nil) | |
954 (byte-defop 173 -1 byte-rel-goto-if-nil-else-pop) | |
955 (byte-defop 174 -1 byte-rel-goto-if-not-nil-else-pop) | |
956 | |
957 (byte-defop 175 nil byte-listN) | |
958 (byte-defop 176 nil byte-concatN) | |
959 (byte-defop 177 nil byte-insertN) | |
960 | |
4677
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4639
diff
changeset
|
961 (byte-defop 178 1 byte-bind-multiple-value-limits) |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4639
diff
changeset
|
962 (byte-defop 179 -3 byte-multiple-value-list-internal) |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4639
diff
changeset
|
963 (byte-defop 180 0 byte-multiple-value-call) |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4639
diff
changeset
|
964 (byte-defop 181 -1 byte-throw) |
428 | 965 |
966 ;; these ops are new to v20 | |
967 (byte-defop 182 -1 byte-member) | |
968 (byte-defop 183 -1 byte-assq) | |
969 | |
970 ;; unused: 184-191 | |
971 | |
972 (byte-defop 192 1 byte-constant "for reference to a constant") | |
973 ;; codes 193-255 are consumed by byte-constant. | |
974 (defconst byte-constant-limit 64 | |
975 "Exclusive maximum index usable in the `byte-constant' opcode.") | |
976 | |
444 | 977 (defconst byte-goto-ops |
978 '(byte-goto byte-goto-if-nil byte-goto-if-not-nil | |
979 byte-goto-if-nil-else-pop | |
980 byte-goto-if-not-nil-else-pop) | |
428 | 981 "List of byte-codes whose offset is a pc.") |
982 | |
983 (defconst byte-goto-always-pop-ops | |
444 | 984 '(byte-goto-if-nil byte-goto-if-not-nil)) |
428 | 985 |
986 (defconst byte-rel-goto-ops | |
444 | 987 '(byte-rel-goto byte-rel-goto-if-nil byte-rel-goto-if-not-nil |
988 byte-rel-goto-if-nil-else-pop byte-rel-goto-if-not-nil-else-pop) | |
428 | 989 "byte-codes for relative jumps.") |
990 | |
991 (byte-extrude-byte-code-vectors) | |
992 | |
993 ;;; lapcode generator | |
994 ;;; | |
995 ;;; the byte-compiler now does source -> lapcode -> bytecode instead of | |
996 ;;; source -> bytecode, because it's a lot easier to make optimizations | |
997 ;;; on lapcode than on bytecode. | |
998 ;;; | |
999 ;;; Elements of the lapcode list are of the form (<instruction> . <parameter>) | |
1000 ;;; where instruction is a symbol naming a byte-code instruction, | |
1001 ;;; and parameter is an argument to that instruction, if any. | |
1002 ;;; | |
1003 ;;; The instruction can be the pseudo-op TAG, which means that this position | |
1004 ;;; in the instruction stream is a target of a goto. (car PARAMETER) will be | |
1005 ;;; the PC for this location, and the whole instruction "(TAG pc)" will be the | |
1006 ;;; parameter for some goto op. | |
1007 ;;; | |
1008 ;;; If the operation is varbind, varref, varset or push-constant, then the | |
1009 ;;; parameter is (variable/constant . index_in_constant_vector). | |
1010 ;;; | |
1011 ;;; First, the source code is macroexpanded and optimized in various ways. | |
1012 ;;; Then the resultant code is compiled into lapcode. Another set of | |
1013 ;;; optimizations are then run over the lapcode. Then the variables and | |
1014 ;;; constants referenced by the lapcode are collected and placed in the | |
1015 ;;; constants-vector. (This happens now so that variables referenced by dead | |
1016 ;;; code don't consume space.) And finally, the lapcode is transformed into | |
1017 ;;; compacted byte-code. | |
1018 ;;; | |
1019 ;;; A distinction is made between variables and constants because the variable- | |
1020 ;;; referencing instructions are more sensitive to the variables being near the | |
1021 ;;; front of the constants-vector than the constant-referencing instructions. | |
1022 ;;; Also, this lets us notice references to free variables. | |
1023 | |
1024 (defun byte-compile-lapcode (lap) | |
1025 "Turns lapcode into bytecode. The lapcode is destroyed." | |
1026 ;; Lapcode modifications: changes the ID of a tag to be the tag's PC. | |
1027 (let ((pc 0) ; Program counter | |
1028 op off ; Operation & offset | |
1029 (bytes '()) ; Put the output bytes here | |
1030 (patchlist nil) ; List of tags and goto's to patch | |
1031 rest rel tmp) | |
1032 (while lap | |
1033 (setq op (car (car lap)) | |
1034 off (cdr (car lap))) | |
1035 (cond ((not (symbolp op)) | |
1036 (error "Non-symbolic opcode `%s'" op)) | |
1037 ((eq op 'TAG) | |
1038 (setcar off pc) | |
1039 (push off patchlist)) | |
1040 ((memq op byte-goto-ops) | |
1041 (setq pc (+ pc 3)) | |
1042 (setq bytes (cons (cons pc (cdr off)) | |
1043 (cons nil | |
1044 (cons (symbol-value op) bytes)))) | |
1045 (push bytes patchlist)) | |
1046 (t | |
1047 (setq bytes | |
1048 (cond ((cond ((consp off) | |
1049 ;; Variable or constant reference | |
1050 (setq off (cdr off)) | |
1051 (eq op 'byte-constant))) | |
1052 (cond ((< off byte-constant-limit) | |
1053 (setq pc (1+ pc)) | |
1054 (cons (+ byte-constant off) bytes)) | |
1055 (t | |
1056 (setq pc (+ 3 pc)) | |
1057 (cons (lsh off -8) | |
1058 (cons (logand off 255) | |
1059 (cons byte-constant2 bytes)))))) | |
1060 ((and (<= byte-listN (symbol-value op)) | |
1061 (<= (symbol-value op) byte-insertN)) | |
1062 (setq pc (+ 2 pc)) | |
1063 (cons off (cons (symbol-value op) bytes))) | |
4677
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4639
diff
changeset
|
1064 ((= byte-multiple-value-call (symbol-value op)) |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4639
diff
changeset
|
1065 (setq pc (1+ pc)) |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4639
diff
changeset
|
1066 ;; Ignore off. |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4639
diff
changeset
|
1067 (cons (symbol-value op) bytes)) |
428 | 1068 ((< off 6) |
1069 (setq pc (1+ pc)) | |
1070 (cons (+ (symbol-value op) off) bytes)) | |
1071 ((< off 256) | |
1072 (setq pc (+ 2 pc)) | |
1073 (cons off (cons (+ (symbol-value op) 6) bytes))) | |
1074 (t | |
1075 (setq pc (+ 3 pc)) | |
1076 (cons (lsh off -8) | |
1077 (cons (logand off 255) | |
1078 (cons (+ (symbol-value op) 7) | |
1079 bytes)))))))) | |
1080 (setq lap (cdr lap))) | |
1081 ;;(if (not (= pc (length bytes))) | |
1082 ;; (error "Compiler error: pc mismatch - %s %s" pc (length bytes))) | |
1083 (cond (t ;; starting with Emacs 19. | |
1084 ;; Make relative jumps | |
1085 (setq patchlist (nreverse patchlist)) | |
1086 (while (progn | |
1087 (setq off 0) ; PC change because of deleted bytes | |
1088 (setq rest patchlist) | |
1089 (while rest | |
1090 (setq tmp (car rest)) | |
1091 (and (consp (car tmp)) ; Jump | |
1092 (prog1 (null (nth 1 tmp)) ; Absolute jump | |
1093 (setq tmp (car tmp))) | |
1094 (progn | |
1095 (setq rel (- (car (cdr tmp)) (car tmp))) | |
1096 (and (<= -129 rel) (< rel 128))) | |
1097 (progn | |
1098 ;; Convert to relative jump. | |
1099 (setcdr (car rest) (cdr (cdr (car rest)))) | |
1100 (setcar (cdr (car rest)) | |
1101 (+ (car (cdr (car rest))) | |
1102 (- byte-rel-goto byte-goto))) | |
1103 (setq off (1- off)))) | |
1104 (setcar tmp (+ (car tmp) off)) ; Adjust PC | |
1105 (setq rest (cdr rest))) | |
1106 ;; If optimizing, repeat until no change. | |
1107 (and byte-optimize | |
1108 (not (zerop off))))))) | |
1109 ;; Patch PC into jumps | |
1110 (let (bytes) | |
1111 (while patchlist | |
1112 (setq bytes (car patchlist)) | |
1113 (cond ((atom (car bytes))) ; Tag | |
1114 ((nth 1 bytes) ; Relative jump | |
1115 (setcar bytes (+ (- (car (cdr (car bytes))) (car (car bytes))) | |
1116 128))) | |
1117 (t ; Absolute jump | |
1118 (setq pc (car (cdr (car bytes)))) ; Pick PC from tag | |
1119 (setcar (cdr bytes) (logand pc 255)) | |
1120 (setcar bytes (lsh pc -8)))) | |
1121 (setq patchlist (cdr patchlist)))) | |
1122 (concat (nreverse bytes)))) | |
1123 | |
1124 | |
1125 ;;; byte compiler messages | |
1126 | |
1127 (defvar byte-compile-current-form nil) | |
1128 (defvar byte-compile-current-file nil) | |
1129 (defvar byte-compile-dest-file nil) | |
1130 | |
1131 (defmacro byte-compile-log (format-string &rest args) | |
1132 `(when (and byte-optimize (memq byte-optimize-log '(t source))) | |
1133 (let ((print-escape-newlines t) | |
1134 (print-level 4) | |
1135 (print-length 4)) | |
1136 (byte-compile-log-1 (format ,format-string ,@args))))) | |
1137 | |
1138 (defconst byte-compile-last-warned-form 'nothing) | |
1139 | |
1140 ;; Log a message STRING in *Compile-Log*. | |
1141 ;; Also log the current function and file if not already done. | |
1142 (defun byte-compile-log-1 (string &optional fill) | |
1143 (let* ((this-form (or byte-compile-current-form "toplevel forms")) | |
1144 (while-compiling-msg | |
1145 (when (or byte-compile-current-file | |
1146 (not (eq this-form byte-compile-last-warned-form))) | |
1147 (format | |
1148 "While compiling %s%s:" | |
1149 this-form | |
1150 (cond | |
1151 ((stringp byte-compile-current-file) | |
1152 (concat " in file " byte-compile-current-file)) | |
1153 ((bufferp byte-compile-current-file) | |
1154 (concat " in buffer " | |
1155 (buffer-name byte-compile-current-file))) | |
1156 ("")))))) | |
1157 (if noninteractive | |
1158 (progn | |
1159 (when while-compiling-msg (message "%s" while-compiling-msg)) | |
1160 (message " %s" string)) | |
1161 (with-current-buffer (get-buffer-create "*Compile-Log*") | |
1162 (goto-char (point-max)) | |
1163 (when byte-compile-current-file | |
1164 (when (> (point-max) (point-min)) | |
1165 (insert "\n\^L\n")) | |
1166 (insert (current-time-string) "\n")) | |
1167 (when while-compiling-msg (insert while-compiling-msg "\n")) | |
1168 (insert " " string "\n") | |
1169 (when (and fill (not (string-match "\n" string))) | |
1170 (let ((fill-prefix " ") | |
1171 (fill-column 78)) | |
1172 (fill-paragraph nil))))) | |
1173 (setq byte-compile-current-file nil) | |
1174 (setq byte-compile-last-warned-form this-form))) | |
1175 | |
1176 ;; Log the start of a file in *Compile-Log*, and mark it as done. | |
1177 ;; But do nothing in batch mode. | |
1178 (defun byte-compile-log-file () | |
1179 (when (and byte-compile-current-file (not noninteractive)) | |
1180 (with-current-buffer (get-buffer-create "*Compile-Log*") | |
1181 (when (> (point-max) (point-min)) | |
1182 (goto-char (point-max)) | |
1183 (insert "\n\^L\n")) | |
1184 (insert "Compiling " | |
1185 (if (stringp byte-compile-current-file) | |
1186 (concat "file " byte-compile-current-file) | |
1187 (concat "buffer " (buffer-name byte-compile-current-file))) | |
1188 " at " (current-time-string) "\n") | |
1189 (setq byte-compile-current-file nil)))) | |
1190 | |
502 | 1191 (defvar byte-compile-inbuffer) |
1192 (defvar byte-compile-outbuffer) | |
1193 | |
428 | 1194 (defun byte-compile-warn (format &rest args) |
1195 (setq format (apply 'format format args)) | |
1196 (if byte-compile-error-on-warn | |
1197 (error "%s" format) ; byte-compile-file catches and logs it | |
1198 (byte-compile-log-1 (concat "** " format) t) | |
502 | 1199 |
1200 ;; This was a first attempt to add line numbers to the | |
1201 ;; byte-compilation output. Unfortunately, it doesn't work | |
1202 ;; perfectly: it reports the line number at the end of the form | |
1203 ;; (which may be an entire function), rather than the line number | |
1204 ;; of the actual problem. Doing this right is hard because we | |
1205 ;; currently use the built-in Lisp parser to parse the entire form | |
1206 ;; at once. What we basically need is a whole separate parser | |
1207 ;; that annotates its output with line numbers. For example, we | |
1208 ;; might modify the parser in lread.c so that, with the right | |
1209 ;; option set, it replaces every Lisp object contained in the | |
1210 ;; structure it returns with a cons of that object and the line | |
1211 ;; number it was found on (determined by counting newlines, | |
1212 ;; starting from some arbitrary point). You then have two | |
1213 ;; options: (a) Modify the byte compiler so that everything that | |
1214 ;; compiles a form deals with the new annotated form rather than | |
1215 ;; the old one, or (b) The byte compiler saves this structure | |
1216 ;; while converting it into a normal structure that's given to the | |
1217 ;; various form handlers, which need no (or less) modification. | |
1218 ;; In the former case, finding the line number is trivial because | |
1219 ;; it's in the form. In the latter case, finding the line number | |
1220 ;; depends on having a unique Lisp object that can be looked up in | |
1221 ;; the annotated structure -- i.e. a list, vector, or string. | |
1222 ;; You'd have to look at the various places where errors are spit | |
1223 ;; out (not very many, really), and make sure that such a unique | |
1224 ;; object is available. Then you do a depth-first search through | |
1225 ;; the annotated structure to find the object. | |
1226 ;; | |
1227 ;; An alternative way of doing (b) that's probably much more | |
1228 ;; efficient (and easier to implement) is simply to have the | |
1229 ;; parser in lread.c annotate every unique object using a separate | |
1230 ;; hash table. This also eliminates the need for a search to find | |
1231 ;; the line number. In order to be fine-grained enough to get at | |
1232 ;; every symbol in a form -- e.g. if we want to pinpoint a | |
1233 ;; particular undefined variable in a function call -- we need to | |
1234 ;; annotate every cons, not just each list. We still have | |
1235 ;; (probably unimportant) problems with vectors, since all we have | |
1236 ;; is the start of the vector. If we cared about this, we could | |
1237 ;; store in the hash table a list of the line numbers for each | |
1238 ;; item in the vector, not just its start. | |
1239 ;; | |
1240 ;; --ben | |
1241 | |
1242 ; (byte-compile-log-1 (concat "** line: " | |
1243 ; (save-excursion | |
1244 ; (set-buffer byte-compile-inbuffer) | |
1245 ; (int-to-string (line-number))) | |
1246 ; " " | |
1247 ; format) t) | |
428 | 1248 ;;; RMS says: |
1249 ;;; It is useless to flash warnings too fast to be read. | |
1250 ;;; Besides, they will all be shown at the end. | |
1251 ;;; and comments out the next two lines. | |
1252 (or noninteractive ; already written on stdout. | |
1253 (message "Warning: %s" format)))) | |
1254 | |
1255 ;;; This function should be used to report errors that have halted | |
1256 ;;; compilation of the current file. | |
1257 (defun byte-compile-report-error (error-info) | |
1258 (setq byte-compiler-error-flag t) | |
1259 (byte-compile-log-1 | |
1260 (concat "!! " | |
1261 (format (if (cdr error-info) "%s (%s)" "%s") | |
1262 (get (car error-info) 'error-message) | |
442 | 1263 (prin1-to-string (cdr error-info))))) |
1264 (if stack-trace-on-error | |
1265 (backtrace nil t))) | |
428 | 1266 |
1267 ;;; Used by make-obsolete. | |
1268 (defun byte-compile-obsolete (form) | |
1269 (let ((new (get (car form) 'byte-obsolete-info))) | |
1270 (if (memq 'obsolete byte-compile-warnings) | |
1271 (byte-compile-warn "%s is an obsolete function; %s" (car form) | |
1272 (if (stringp (car new)) | |
1273 (car new) | |
1274 (format "use %s instead." (car new))))) | |
1275 (funcall (or (cdr new) 'byte-compile-normal-call) form))) | |
1276 | |
1277 ;;; Used by make-obsolete. | |
1278 (defun byte-compile-compatible (form) | |
1279 (let ((new (get (car form) 'byte-compatible-info))) | |
1280 (if (memq 'pedantic byte-compile-warnings) | |
1281 (byte-compile-warn "%s is provided for compatibility; %s" (car form) | |
1282 (if (stringp (car new)) | |
1283 (car new) | |
1284 (format "use %s instead." (car new))))) | |
1285 (funcall (or (cdr new) 'byte-compile-normal-call) form))) | |
1286 | |
1287 ;; Compiler options | |
1288 | |
1289 (defconst byte-compiler-legal-options | |
1290 '((optimize byte-optimize (t nil source byte) val) | |
5503
7b5946dbfb96
Drop support for generating code appropriate for Emacs 19, bytecomp.el
Aidan Kehoe <kehoea@parhasard.net>
parents:
5475
diff
changeset
|
1291 (file-format byte-compile-emacs19-compatibility (emacs20) |
428 | 1292 (eq val 'emacs19)) |
1293 (delete-errors byte-compile-delete-errors (t nil) val) | |
1294 (verbose byte-compile-verbose (t nil) val) | |
1295 (new-bytecodes byte-compile-new-bytecodes (t nil) val) | |
1296 (warnings byte-compile-warnings | |
4719
bd51ab22afa8
Make it possible to silence warnings issued when #'mapcar's result is discarded.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4716
diff
changeset
|
1297 ((callargs subr-callargs redefine free-vars unused-vars |
bd51ab22afa8
Make it possible to silence warnings issued when #'mapcar's result is discarded.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4716
diff
changeset
|
1298 unresolved discarded-consing quoted-lambda)) |
428 | 1299 val))) |
1300 | |
1301 ;; XEmacs addition | |
1302 (defconst byte-compiler-obsolete-options | |
5503
7b5946dbfb96
Drop support for generating code appropriate for Emacs 19, bytecomp.el
Aidan Kehoe <kehoea@parhasard.net>
parents:
5475
diff
changeset
|
1303 '((new-bytecodes t) (byte-compile-emacs19-compatibility nil))) |
428 | 1304 |
1305 (defun byte-compiler-options-handler (&rest args) | |
1306 (let (key val desc choices) | |
1307 (while args | |
1308 (if (or (atom (car args)) (nthcdr 2 (car args)) (null (cdr (car args)))) | |
1309 (error "malformed byte-compiler-option %s" (car args))) | |
1310 (setq key (car (car args)) | |
1311 val (car (cdr (car args))) | |
1312 desc (assq key byte-compiler-legal-options)) | |
1313 (or desc | |
1314 (error "unknown byte-compiler option %s" key)) | |
1315 (if (assq key byte-compiler-obsolete-options) | |
1316 (byte-compile-warn "%s is an obsolete byte-compiler option." key)) | |
1317 (setq choices (nth 2 desc)) | |
1318 (if (consp (car choices)) | |
1319 (let* (this | |
1320 (handler 'cons) | |
1321 (var (nth 1 desc)) | |
1322 (ret (and (memq (car val) '(+ -)) | |
1323 (copy-sequence (if (eq t (symbol-value var)) | |
1324 (car choices) | |
1325 (symbol-value var)))))) | |
1326 (setq choices (car choices)) | |
1327 (while val | |
1328 (setq this (car val)) | |
1329 (cond ((memq this choices) | |
1330 (setq ret (funcall handler this ret))) | |
1331 ((eq this '+) (setq handler 'cons)) | |
1332 ((eq this '-) (setq handler 'delq)) | |
1333 ((error "%s only accepts %s." key choices))) | |
1334 (setq val (cdr val))) | |
1335 (set (nth 1 desc) ret)) | |
1336 (or (memq val choices) | |
1337 (error "%s must be one of %s." key choices)) | |
1338 (set (nth 1 desc) (eval (nth 3 desc)))) | |
1339 (setq args (cdr args))) | |
1340 nil)) | |
1341 | |
1342 ;;; sanity-checking arglists | |
1343 | |
1344 (defun byte-compile-fdefinition (name macro-p) | |
1345 (let* ((list (if (memq macro-p '(nil subr)) | |
1346 byte-compile-function-environment | |
1347 byte-compile-macro-environment)) | |
1348 (env (cdr (assq name list)))) | |
1349 (or env | |
1350 (let ((fn name)) | |
1351 (while (and (symbolp fn) | |
1352 (fboundp fn) | |
1353 (or (symbolp (symbol-function fn)) | |
1354 (consp (symbol-function fn)) | |
1355 (and (not macro-p) | |
1356 (compiled-function-p (symbol-function fn))) | |
1357 (and (eq macro-p 'subr) (subrp fn)))) | |
1358 (setq fn (symbol-function fn))) | |
1359 (if (or (and (not macro-p) (compiled-function-p fn)) | |
1360 (and (eq macro-p 'subr) (subrp fn))) | |
1361 fn | |
1362 (and (consp fn) | |
1363 (not (eq macro-p 'subr)) | |
1364 (if (eq 'macro (car fn)) | |
1365 (cdr fn) | |
1366 (if macro-p | |
1367 nil | |
1368 (if (eq 'autoload (car fn)) | |
1369 nil | |
1370 fn))))))))) | |
1371 | |
1372 (defun byte-compile-arglist-signature (arglist) | |
1373 (let ((args 0) | |
1374 opts | |
1375 restp) | |
1376 (while arglist | |
1377 (cond ((eq (car arglist) '&optional) | |
1378 (or opts (setq opts 0))) | |
1379 ((eq (car arglist) '&rest) | |
1380 (if (cdr arglist) | |
1381 (setq restp t | |
1382 arglist nil))) | |
1383 (t | |
1384 (if opts | |
1385 (setq opts (1+ opts)) | |
1386 (setq args (1+ args))))) | |
1387 (setq arglist (cdr arglist))) | |
1388 (cons args (if restp nil (if opts (+ args opts) args))))) | |
1389 | |
1390 | |
1391 (defun byte-compile-arglist-signatures-congruent-p (old new) | |
1392 (not (or | |
1393 (> (car new) (car old)) ; requires more args now | |
1394 (and (null (cdr old)) ; tooks rest-args, doesn't any more | |
1395 (cdr new)) | |
1396 (and (cdr new) (cdr old) ; can't take as many args now | |
1397 (< (cdr new) (cdr old))) | |
1398 ))) | |
1399 | |
1400 (defun byte-compile-arglist-signature-string (signature) | |
1401 (cond ((null (cdr signature)) | |
1402 (format "%d+" (car signature))) | |
1403 ((= (car signature) (cdr signature)) | |
1404 (format "%d" (car signature))) | |
1405 (t (format "%d-%d" (car signature) (cdr signature))))) | |
1406 | |
1407 | |
1408 ;; Warn if the form is calling a function with the wrong number of arguments. | |
1409 (defun byte-compile-callargs-warn (form) | |
1410 (let* ((def (or (byte-compile-fdefinition (car form) nil) | |
1411 (byte-compile-fdefinition (car form) t))) | |
1412 (sig (and def (byte-compile-arglist-signature | |
1413 (if (eq 'lambda (car-safe def)) | |
1414 (nth 1 def) | |
1415 (if (compiled-function-p def) | |
1416 (compiled-function-arglist def) | |
1417 '(&rest def)))))) | |
1418 (ncall (length (cdr form)))) | |
1419 (if (and (null def) | |
1420 (fboundp 'subr-min-args) | |
1421 (setq def (byte-compile-fdefinition (car form) 'subr))) | |
1422 (setq sig (cons (subr-min-args def) (subr-max-args def)))) | |
1423 (if sig | |
1424 (if (or (< ncall (car sig)) | |
1425 (and (cdr sig) (> ncall (cdr sig)))) | |
1426 (byte-compile-warn | |
1427 "%s called with %d argument%s, but %s %s" | |
1428 (car form) ncall | |
1429 (if (= 1 ncall) "" "s") | |
1430 (if (< ncall (car sig)) | |
1431 "requires" | |
1432 "accepts only") | |
1433 (byte-compile-arglist-signature-string sig))) | |
1434 (or (fboundp (car form)) ; might be a subr or autoload. | |
1435 ;; ## this doesn't work with recursion. | |
1436 (eq (car form) byte-compile-current-form) | |
1437 ;; It's a currently-undefined function. | |
1438 ;; Remember number of args in call. | |
1439 (let ((cons (assq (car form) byte-compile-unresolved-functions)) | |
1440 (n (length (cdr form)))) | |
1441 (if cons | |
1442 (or (memq n (cdr cons)) | |
1443 (setcdr cons (cons n (cdr cons)))) | |
1444 (setq byte-compile-unresolved-functions | |
1445 (cons (list (car form) n) | |
1446 byte-compile-unresolved-functions)))))))) | |
1447 | |
1448 ;; Warn if the function or macro is being redefined with a different | |
1449 ;; number of arguments. | |
1450 (defun byte-compile-arglist-warn (form macrop) | |
1451 (let ((old (byte-compile-fdefinition (nth 1 form) macrop))) | |
1452 (if old | |
1453 (let ((sig1 (byte-compile-arglist-signature | |
1454 (if (eq 'lambda (car-safe old)) | |
1455 (nth 1 old) | |
1456 (if (compiled-function-p old) | |
1457 (compiled-function-arglist old) | |
1458 '(&rest def))))) | |
1459 (sig2 (byte-compile-arglist-signature (nth 2 form)))) | |
1460 (or (byte-compile-arglist-signatures-congruent-p sig1 sig2) | |
1461 (byte-compile-warn "%s %s used to take %s %s, now takes %s" | |
1462 (if (eq (car form) 'defun) "function" "macro") | |
1463 (nth 1 form) | |
1464 (byte-compile-arglist-signature-string sig1) | |
1465 (if (equal sig1 '(1 . 1)) "argument" "arguments") | |
1466 (byte-compile-arglist-signature-string sig2)))) | |
1467 ;; This is the first definition. See if previous calls are compatible. | |
1468 (let ((calls (assq (nth 1 form) byte-compile-unresolved-functions)) | |
1469 nums sig min max) | |
1470 (if calls | |
1471 (progn | |
1472 (setq sig (byte-compile-arglist-signature (nth 2 form)) | |
1473 nums (sort (copy-sequence (cdr calls)) (function <)) | |
1474 min (car nums) | |
1475 max (car (nreverse nums))) | |
1476 (if (or (< min (car sig)) | |
1477 (and (cdr sig) (> max (cdr sig)))) | |
1478 (byte-compile-warn | |
1479 "%s being defined to take %s%s, but was previously called with %s" | |
1480 (nth 1 form) | |
1481 (byte-compile-arglist-signature-string sig) | |
1482 (if (equal sig '(1 . 1)) " arg" " args") | |
1483 (byte-compile-arglist-signature-string (cons min max)))) | |
1484 | |
1485 (setq byte-compile-unresolved-functions | |
1486 (delq calls byte-compile-unresolved-functions))))) | |
1487 ))) | |
1488 | |
1489 ;; If we have compiled any calls to functions which are not known to be | |
1490 ;; defined, issue a warning enumerating them. | |
1491 ;; `unresolved' in the list `byte-compile-warnings' disables this. | |
1492 (defun byte-compile-warn-about-unresolved-functions (&optional msg) | |
1493 (if (memq 'unresolved byte-compile-warnings) | |
1494 (let ((byte-compile-current-form (or msg "the end of the data"))) | |
1495 ;; First delete the autoloads from the list. | |
1496 (if byte-compile-autoload-environment | |
1497 (let ((rest byte-compile-unresolved-functions)) | |
1498 (while rest | |
1499 (if (assq (car (car rest)) byte-compile-autoload-environment) | |
1500 (setq byte-compile-unresolved-functions | |
1501 (delq (car rest) byte-compile-unresolved-functions))) | |
1502 (setq rest (cdr rest))))) | |
1503 ;; Now warn. | |
1504 (if (cdr byte-compile-unresolved-functions) | |
1505 (let* ((str "The following functions are not known to be defined: ") | |
1506 (L (+ (length str) 5)) | |
1507 (rest (reverse byte-compile-unresolved-functions)) | |
1508 s) | |
1509 (while rest | |
1510 (setq s (symbol-name (car (car rest))) | |
1511 L (+ L (length s) 2) | |
1512 rest (cdr rest)) | |
1513 (if (<= L (1- fill-column)) | |
1514 (setq str (concat str " " s (and rest ","))) | |
1515 (setq str (concat str "\n " s (and rest ",")) | |
1516 L (+ (length s) 4)))) | |
1517 (byte-compile-warn "%s" str)) | |
1518 (if byte-compile-unresolved-functions | |
1519 (byte-compile-warn "the function %s is not known to be defined." | |
1520 (car (car byte-compile-unresolved-functions))))))) | |
1521 nil) | |
1522 | |
1523 (defun byte-compile-defvar-p (var) | |
1524 ;; Whether the byte compiler thinks that non-lexical references to this | |
1525 ;; variable are ok. | |
1526 (or (globally-boundp var) | |
1527 (let ((rest byte-compile-bound-variables)) | |
1528 (while (and rest var) | |
1529 (if (and (eq var (car-safe (car rest))) | |
1530 (not (= 0 (logand (cdr (car rest)) | |
1531 byte-compile-global-bit)))) | |
1532 (setq var nil)) | |
1533 (setq rest (cdr rest))) | |
1534 ;; if var is nil at this point, it's a defvar in this file. | |
444 | 1535 (not var)) |
1536 ;; Perhaps (eval-when-compile (defvar foo)) | |
1537 (and (boundp 'current-load-list) | |
1538 (memq var current-load-list)))) | |
428 | 1539 |
1540 | |
1541 ;;; If we have compiled bindings of variables which have no referents, warn. | |
1542 (defun byte-compile-warn-about-unused-variables () | |
1543 (let ((rest byte-compile-bound-variables) | |
1544 (unreferenced '()) | |
1545 cell) | |
1546 (while (and rest | |
1547 ;; only warn about variables whose lifetime is now ending, | |
1548 ;; that is, variables from the lexical scope that is now | |
1549 ;; terminating. (Think nested lets.) | |
1550 (not (eq (car rest) 'new-scope))) | |
1551 (setq cell (car rest)) | |
1552 (if (and (= 0 (logand byte-compile-referenced-bit (cdr cell))) | |
1553 ;; Don't warn about declared-but-unused arguments, | |
1554 ;; for two reasons: first, the arglist structure | |
1555 ;; might be imposed by external forces, and we don't | |
1556 ;; have (declare (ignore x)) yet; and second, inline | |
1557 ;; expansion produces forms like | |
1558 ;; ((lambda (arg) (byte-code "..." [arg])) x) | |
1559 ;; which we can't (ok, well, don't) recognize as | |
1560 ;; containing a reference to arg, so every inline | |
1561 ;; expansion would generate a warning. (If we had | |
1562 ;; `ignore' then inline expansion could emit an | |
1563 ;; ignore declaration.) | |
1564 (= 0 (logand byte-compile-arglist-bit (cdr cell))) | |
1565 ;; Don't warn about defvars because this is a | |
1566 ;; legitimate special binding. | |
1567 (not (byte-compile-defvar-p (car cell)))) | |
1568 (setq unreferenced (cons (car cell) unreferenced))) | |
1569 (setq rest (cdr rest))) | |
1570 (setq unreferenced (nreverse unreferenced)) | |
1571 (while unreferenced | |
1572 (byte-compile-warn | |
1573 (format "variable %s bound but not referenced" (car unreferenced))) | |
1574 (setq unreferenced (cdr unreferenced))))) | |
1575 | |
1576 | |
1577 (defmacro byte-compile-constant-symbol-p (symbol) | |
1578 `(or (keywordp ,symbol) (memq ,symbol '(nil t)))) | |
1579 | |
1580 (defmacro byte-compile-constp (form) | |
1581 ;; Returns non-nil if FORM is a constant. | |
5282
dcc34e28cd84
Warn at byte-compile in #'the if FORM constant & not TYPE; fix byte-compile-constp
Aidan Kehoe <kehoea@parhasard.net>
parents:
5269
diff
changeset
|
1582 `(cond ((consp ,form) (memq (car ,form) '(quote function))) |
428 | 1583 ((symbolp ,form) (byte-compile-constant-symbol-p ,form)) |
1584 (t))) | |
1585 | |
1586 (defmacro byte-compile-close-variables (&rest body) | |
1587 `(let | |
1588 (;; | |
1589 ;; Close over these variables to encapsulate the | |
1590 ;; compilation state | |
1591 ;; | |
1592 (byte-compile-macro-environment | |
1593 ;; Copy it because the compiler may patch into the | |
1594 ;; macroenvironment. | |
1595 (copy-alist byte-compile-initial-macro-environment)) | |
1596 (byte-compile-function-environment nil) | |
1597 (byte-compile-autoload-environment nil) | |
1598 (byte-compile-unresolved-functions nil) | |
1599 (byte-compile-bound-variables nil) | |
1600 (byte-compile-free-references nil) | |
1601 (byte-compile-free-assignments nil) | |
1602 ;; | |
1603 ;; Close over these variables so that `byte-compiler-options' | |
1604 ;; can change them on a per-file basis. | |
1605 ;; | |
1606 (byte-compile-verbose byte-compile-verbose) | |
1607 (byte-optimize byte-optimize) | |
4677
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4639
diff
changeset
|
1608 (byte-compile-checks-on-load |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4639
diff
changeset
|
1609 byte-compile-checks-on-load) |
428 | 1610 (byte-compile-dynamic byte-compile-dynamic) |
1611 (byte-compile-dynamic-docstrings | |
1612 byte-compile-dynamic-docstrings) | |
1613 (byte-compile-warnings (if (eq byte-compile-warnings t) | |
1614 byte-compile-default-warnings | |
1615 byte-compile-warnings)) | |
1616 (byte-compile-file-domain nil)) | |
1617 (prog1 | |
1618 (progn ,@body) | |
1619 (if (memq 'unused-vars byte-compile-warnings) | |
1620 ;; done compiling in this scope, warn now. | |
1621 (byte-compile-warn-about-unused-variables))))) | |
1622 | |
1623 | |
1624 (defmacro displaying-byte-compile-warnings (&rest body) | |
1625 `(let* ((byte-compile-log-buffer (get-buffer-create "*Compile-Log*")) | |
1626 (byte-compile-point-max-prev (point-max byte-compile-log-buffer))) | |
1627 ;; Log the file name or buffer name. | |
1628 (byte-compile-log-file) | |
1629 ;; Record how much is logged now. | |
1630 ;; We will display the log buffer if anything more is logged | |
1631 ;; before the end of BODY. | |
1632 (defvar byte-compile-warnings-beginning) | |
1633 (let ((byte-compile-warnings-beginning | |
1634 (if (boundp 'byte-compile-warnings-beginning) | |
1635 byte-compile-warnings-beginning | |
1636 (point-max byte-compile-log-buffer)))) | |
1637 | |
1638 (unwind-protect | |
442 | 1639 (call-with-condition-handler |
1640 #'(lambda (error-info) | |
1641 (byte-compile-report-error error-info)) | |
1642 #'(lambda () | |
1643 (progn ,@body))) | |
428 | 1644 ;; Always set point in log to start of interesting output. |
1645 (with-current-buffer byte-compile-log-buffer | |
1646 (let ((show-begin | |
1647 (progn (goto-char byte-compile-point-max-prev) | |
1648 (skip-chars-forward "\^L\n") | |
1649 (point)))) | |
1650 ;; If there were compilation warnings, display them. | |
1651 (if temp-buffer-show-function | |
1652 (let ((show-buffer (get-buffer-create "*Compile-Log-Show*"))) | |
1653 ;; Always clean show-buffer, even when not displaying it, | |
1654 ;; so that misleading previous messages aren't left around. | |
1655 (with-current-buffer show-buffer | |
1656 (setq buffer-read-only nil) | |
1657 (erase-buffer)) | |
1658 (copy-to-buffer show-buffer show-begin (point-max)) | |
1659 (when (< byte-compile-warnings-beginning (point-max)) | |
1660 (funcall temp-buffer-show-function show-buffer))) | |
1661 (when (< byte-compile-warnings-beginning (point-max)) | |
1662 (select-window | |
1663 (prog1 (selected-window) | |
1664 (select-window (display-buffer (current-buffer))) | |
1665 (goto-char show-begin) | |
1666 (recenter 1))))))))))) | |
1667 | |
1668 | |
1669 ;;;###autoload | |
1670 (defun byte-force-recompile (directory) | |
1671 "Recompile every `.el' file in DIRECTORY that already has a `.elc' file. | |
1672 Files in subdirectories of DIRECTORY are processed also." | |
1673 (interactive "DByte force recompile (directory): ") | |
442 | 1674 (byte-recompile-directory directory nil nil t)) |
428 | 1675 |
1676 ;;;###autoload | |
1677 (defun byte-recompile-directory (directory &optional arg norecursion force) | |
1678 "Recompile every `.el' file in DIRECTORY that needs recompilation. | |
1679 This is if a `.elc' file exists but is older than the `.el' file. | |
444 | 1680 Files in subdirectories of DIRECTORY are also processed unless |
1681 optional argument NORECURSION is non-nil. | |
428 | 1682 |
1683 If the `.elc' file does not exist, normally the `.el' file is *not* compiled. | |
1684 But a prefix argument (optional second arg) means ask user, | |
1685 for each such `.el' file, whether to compile it. Prefix argument 0 means | |
1686 don't ask and compile the file anyway. | |
1687 | |
1688 A nonzero prefix argument also means ask about each subdirectory. | |
1689 | |
444 | 1690 If the fourth optional argument FORCE is non-nil, |
428 | 1691 recompile every `.el' file that already has a `.elc' file." |
1692 (interactive "DByte recompile directory: \nP") | |
1693 (if arg | |
1694 (setq arg (prefix-numeric-value arg))) | |
1695 (if noninteractive | |
1696 nil | |
1697 (save-some-buffers) | |
1698 (redraw-modeline)) | |
1699 (let ((directories (list (expand-file-name directory))) | |
1700 (file-count 0) | |
1701 (dir-count 0) | |
1702 last-dir) | |
1703 (displaying-byte-compile-warnings | |
1704 (while directories | |
1705 (setq directory (file-name-as-directory (car directories))) | |
1706 (or noninteractive (message "Checking %s..." directory)) | |
1707 (let ((files (directory-files directory)) | |
1708 source dest) | |
1709 (while files | |
1710 (setq source (expand-file-name (car files) directory)) | |
1711 (if (and (not (member (car files) '("." ".." "RCS" "CVS" "SCCS"))) | |
1712 ;; Stay away from directory back-links, etc: | |
1713 (not (file-symlink-p source)) | |
1714 (file-directory-p source) | |
1715 byte-recompile-directory-recursively) | |
1716 ;; This file is a subdirectory. Handle them differently. | |
1717 (if (or (null arg) | |
1718 (eq arg 0) | |
1719 (y-or-n-p (concat "Check " source "? "))) | |
1720 (setq directories | |
1721 (nconc directories (list source)))) | |
1722 ;; It is an ordinary file. Decide whether to compile it. | |
1723 (if (and (string-match emacs-lisp-file-regexp source) | |
1724 (not (auto-save-file-name-p source)) | |
502 | 1725 ;; make sure not a mule file we can't handle. |
1726 (or (not byte-recompile-ignore-uncompilable-mule-files) | |
1727 (featurep 'mule) | |
1728 (not (find-coding-system-magic-cookie-in-file | |
1729 source))) | |
428 | 1730 (setq dest (byte-compile-dest-file source)) |
1731 (if (file-exists-p dest) | |
1732 ;; File was already compiled. | |
1733 (or force (file-newer-than-file-p source dest)) | |
1734 ;; No compiled file exists yet. | |
1735 (and arg | |
1736 (or (eq 0 arg) | |
1737 (y-or-n-p (concat "Compile " source "? ")))))) | |
1738 (progn ;(if (and noninteractive (not byte-compile-verbose)) | |
1739 ; (message "Compiling %s..." source)) | |
1740 ; we do this in byte-compile-file. | |
1741 (if byte-recompile-directory-ignore-errors-p | |
1742 (batch-byte-compile-1 source) | |
1743 (byte-compile-file source)) | |
1744 (or noninteractive | |
1745 (message "Checking %s..." directory)) | |
1746 (setq file-count (1+ file-count)) | |
1747 (if (not (eq last-dir directory)) | |
1748 (setq last-dir directory | |
1749 dir-count (1+ dir-count))) | |
1750 ))) | |
1751 (setq files (cdr files)))) | |
1752 (setq directories (cdr directories)))) | |
1753 (message "Done (Total of %d file%s compiled%s)" | |
1754 file-count (if (= file-count 1) "" "s") | |
1755 (if (> dir-count 1) (format " in %d directories" dir-count) "")))) | |
1756 | |
1757 ;;;###autoload | |
1758 (defun byte-recompile-file (filename &optional force) | |
1759 "Recompile a file of Lisp code named FILENAME if it needs recompilation. | |
1760 This is if the `.elc' file exists but is older than the `.el' file. | |
1761 | |
1762 If the `.elc' file does not exist, normally the `.el' file is *not* | |
1763 compiled. But a prefix argument (optional second arg) means ask user | |
1764 whether to compile it. Prefix argument 0 don't ask and recompile anyway." | |
1765 (interactive "fByte recompile file: \nP") | |
1766 (let ((dest)) | |
1767 (if (and (string-match emacs-lisp-file-regexp filename) | |
1768 (not (auto-save-file-name-p filename)) | |
1769 (setq dest (byte-compile-dest-file filename)) | |
1770 (if (file-exists-p dest) | |
1771 (file-newer-than-file-p filename dest) | |
1772 (and force | |
1773 (or (eq 0 force) | |
502 | 1774 (y-or-n-p (concat "Compile " filename "? "))))) |
1775 (or (not byte-recompile-ignore-uncompilable-mule-files) | |
1776 (featurep 'mule) | |
1777 (not (find-coding-system-magic-cookie-in-file filename)))) | |
428 | 1778 (byte-compile-file filename)))) |
1779 | |
1780 ;;;###autoload | |
1781 (defun byte-compile-file (filename &optional load) | |
1782 "Compile a file of Lisp code named FILENAME into a file of byte code. | |
1783 The output file's name is made by appending `c' to the end of FILENAME. | |
1784 With prefix arg (noninteractively: 2nd arg), load the file after compiling." | |
1785 ;; (interactive "fByte compile file: \nP") | |
1786 (interactive | |
1787 (let ((file buffer-file-name) | |
1788 (file-name nil) | |
1789 (file-dir nil)) | |
1790 (and file | |
1791 (eq (cdr (assq 'major-mode (buffer-local-variables))) | |
1792 'emacs-lisp-mode) | |
1793 (setq file-name (file-name-nondirectory file) | |
1794 file-dir (file-name-directory file))) | |
1795 (list (read-file-name (if current-prefix-arg | |
1796 "Byte compile and load file: " | |
1797 "Byte compile file: ") | |
1798 file-dir nil nil file-name) | |
1799 current-prefix-arg))) | |
1800 ;; Expand now so we get the current buffer's defaults | |
1801 (setq filename (expand-file-name filename)) | |
1802 | |
1803 ;; If we're compiling a file that's in a buffer and is modified, offer | |
1804 ;; to save it first. | |
1805 (or noninteractive | |
1806 (let ((b (get-file-buffer (expand-file-name filename)))) | |
1807 (if (and b (buffer-modified-p b) | |
1808 (y-or-n-p (format "save buffer %s first? " (buffer-name b)))) | |
1809 (save-excursion (set-buffer b) (save-buffer))))) | |
1810 | |
1811 (if (or noninteractive byte-compile-verbose) ; XEmacs change | |
1812 (message "Compiling %s..." filename)) | |
1813 (let (;;(byte-compile-current-file (file-name-nondirectory filename)) | |
1814 (byte-compile-current-file filename) | |
1815 target-file input-buffer output-buffer | |
1816 byte-compile-dest-file) | |
1817 (setq target-file (byte-compile-dest-file filename)) | |
1818 (setq byte-compile-dest-file target-file) | |
1819 (save-excursion | |
1820 (setq input-buffer (get-buffer-create " *Compiler Input*")) | |
1821 (set-buffer input-buffer) | |
1822 (erase-buffer) | |
1823 (insert-file-contents filename) | |
1824 ;; Run hooks including the uncompression hook. | |
1825 ;; If they change the file name, then change it for the output also. | |
1826 (let ((buffer-file-name filename) | |
1827 (default-major-mode 'emacs-lisp-mode) | |
1828 (enable-local-eval nil)) | |
1829 (normal-mode) | |
1830 (setq filename buffer-file-name))) | |
1831 (setq byte-compiler-error-flag nil) | |
1832 ;; It is important that input-buffer not be current at this call, | |
1833 ;; so that the value of point set in input-buffer | |
1834 ;; within byte-compile-from-buffer lingers in that buffer. | |
1835 (setq output-buffer (byte-compile-from-buffer input-buffer filename)) | |
1836 (if byte-compiler-error-flag | |
1837 nil | |
1838 (if byte-compile-verbose | |
1839 (message "Compiling %s...done" filename)) | |
1840 (kill-buffer input-buffer) | |
1841 (save-excursion | |
1842 (set-buffer output-buffer) | |
1843 (goto-char (point-max)) | |
1844 (insert "\n") ; aaah, unix. | |
1845 (setq target-file (byte-compile-dest-file filename)) | |
1846 (unless byte-compile-overwrite-file | |
1847 (ignore-file-errors (delete-file target-file))) | |
1848 (if (file-writable-p target-file) | |
4529
6f41fb7f3a65
Protect .elc encoding from latin-unity.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4392
diff
changeset
|
1849 ;; prevent generic hooks from changing our format, eg, |
6f41fb7f3a65
Protect .elc encoding from latin-unity.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4392
diff
changeset
|
1850 ;; latin-unity is known to change the coding system! |
6f41fb7f3a65
Protect .elc encoding from latin-unity.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4392
diff
changeset
|
1851 (let ((write-region-pre-hook nil)) |
6f41fb7f3a65
Protect .elc encoding from latin-unity.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4392
diff
changeset
|
1852 (write-region 1 (point-max) target-file)) |
428 | 1853 ;; This is just to give a better error message than write-region |
1854 (signal 'file-error | |
1855 (list "Opening output file" | |
1856 (if (file-exists-p target-file) | |
1857 "cannot overwrite file" | |
1858 "directory not writable or nonexistent") | |
1859 target-file))) | |
1860 (or byte-compile-overwrite-file | |
1861 (condition-case () | |
1862 (set-file-modes target-file (file-modes filename)) | |
1863 (error nil))) | |
1864 (kill-buffer (current-buffer))) | |
1865 (if (and byte-compile-generate-call-tree | |
1866 (or (eq t byte-compile-generate-call-tree) | |
1867 (y-or-n-p (format "Report call tree for %s? " filename)))) | |
1868 (save-excursion | |
1869 (display-call-tree filename))) | |
1870 (if load | |
1871 (load target-file)) | |
1872 t))) | |
1873 | |
1874 ;; RMS comments the next two out. | |
1875 | |
1876 ;;;###autoload | |
1877 (defun byte-compile-and-load-file (&optional filename) | |
1878 "Compile a file of Lisp code named FILENAME into a file of byte code, | |
1879 and then load it. The output file's name is made by appending \"c\" to | |
1880 the end of FILENAME." | |
1881 (interactive) | |
1882 (if filename ; I don't get it, (interactive-p) doesn't always work | |
1883 (byte-compile-file filename t) | |
1884 (let ((current-prefix-arg '(4))) | |
1885 (call-interactively 'byte-compile-file)))) | |
1886 | |
1887 ;;;###autoload | |
1888 (defun byte-compile-buffer (&optional buffer) | |
1889 "Byte-compile and evaluate contents of BUFFER (default: the current buffer)." | |
1890 (interactive "bByte compile buffer: ") | |
1891 (setq buffer (if buffer (get-buffer buffer) (current-buffer))) | |
1892 (message "Compiling %s..." buffer) | |
1893 (let* ((filename (or (buffer-file-name buffer) | |
1894 (prin1-to-string buffer))) | |
1895 (byte-compile-current-file buffer)) | |
1896 (byte-compile-from-buffer buffer filename t)) | |
1897 (message "Compiling %s...done" buffer) | |
1898 t) | |
1899 | |
1900 ;;; compiling a single function | |
1901 ;;;###autoload | |
1902 (defun compile-defun (&optional arg) | |
1903 "Compile and evaluate the current top-level form. | |
1904 Print the result in the minibuffer. | |
1905 With argument, insert value in current buffer after the form." | |
1906 (interactive "P") | |
1907 (save-excursion | |
1908 (end-of-defun) | |
1909 (beginning-of-defun) | |
1910 (let* ((byte-compile-current-file (buffer-file-name)) | |
1911 (load-file-name (buffer-file-name)) | |
1912 (byte-compile-last-warned-form 'nothing) | |
1913 (value (eval (displaying-byte-compile-warnings | |
1914 (byte-compile-sexp (read (current-buffer)) | |
1915 "toplevel forms"))))) | |
1916 (cond (arg | |
1917 (message "Compiling from buffer... done.") | |
1918 (prin1 value (current-buffer)) | |
1919 (insert "\n")) | |
1920 ((message "%s" (prin1-to-string value))))))) | |
1921 | |
1922 (defun byte-compile-from-buffer (byte-compile-inbuffer filename &optional eval) | |
1923 ;; buffer --> output-buffer, or buffer --> eval form, return nil | |
1924 (let (byte-compile-outbuffer | |
1925 ;; Prevent truncation of flonums and lists as we read and print them | |
1926 (float-output-format nil) | |
1927 (case-fold-search nil) | |
1928 (print-length nil) | |
1929 (print-level nil) | |
1930 ;; Simulate entry to byte-compile-top-level | |
1931 (byte-compile-constants nil) | |
1932 (byte-compile-variables nil) | |
1933 (byte-compile-tag-number 0) | |
1934 (byte-compile-depth 0) | |
1935 (byte-compile-maxdepth 0) | |
1936 (byte-compile-output nil) | |
1937 ;; #### This is bound in b-c-close-variables. | |
1938 ;; (byte-compile-warnings (if (eq byte-compile-warnings t) | |
1939 ;; byte-compile-warning-types | |
1940 ;; byte-compile-warnings)) | |
4623
a9f83990e6bf
Fix a byte compiler bug with characters above ?\xFF.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4539
diff
changeset
|
1941 (byte-compile-force-escape-quoted byte-compile-force-escape-quoted) |
4677
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4639
diff
changeset
|
1942 (byte-compile-using-dynamic nil)) |
428 | 1943 (byte-compile-close-variables |
1944 (save-excursion | |
1945 (setq byte-compile-outbuffer | |
1946 (set-buffer (get-buffer-create " *Compiler Output*"))) | |
1947 (erase-buffer) | |
1948 ;; (emacs-lisp-mode) | |
1949 (setq case-fold-search nil) | |
1950 (and filename | |
1951 (not eval) | |
4677
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4639
diff
changeset
|
1952 (byte-compile-maybe-reset-coding byte-compile-inbuffer |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4639
diff
changeset
|
1953 byte-compile-outbuffer)) |
4623
a9f83990e6bf
Fix a byte compiler bug with characters above ?\xFF.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4539
diff
changeset
|
1954 (setq byte-compile-using-dynamic |
a9f83990e6bf
Fix a byte compiler bug with characters above ?\xFF.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4539
diff
changeset
|
1955 (or (symbol-value-in-buffer 'byte-compile-dynamic |
a9f83990e6bf
Fix a byte compiler bug with characters above ?\xFF.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4539
diff
changeset
|
1956 byte-compile-inbuffer) |
a9f83990e6bf
Fix a byte compiler bug with characters above ?\xFF.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4539
diff
changeset
|
1957 (symbol-value-in-buffer 'byte-compile-dynamic-docstrings |
a9f83990e6bf
Fix a byte compiler bug with characters above ?\xFF.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4539
diff
changeset
|
1958 byte-compile-inbuffer))) |
428 | 1959 ;; This is a kludge. Some operating systems (OS/2, DOS) need to |
1960 ;; write files containing binary information specially. | |
1961 ;; Under most circumstances, such files will be in binary | |
1962 ;; overwrite mode, so those OS's use that flag to guess how | |
1963 ;; they should write their data. Advise them that .elc files | |
1964 ;; need to be written carefully. | |
1965 (setq overwrite-mode 'overwrite-mode-binary)) | |
1966 (displaying-byte-compile-warnings | |
1967 (save-excursion | |
4623
a9f83990e6bf
Fix a byte compiler bug with characters above ?\xFF.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4539
diff
changeset
|
1968 ;; All our save-excursions may have led to a less-than-useful |
a9f83990e6bf
Fix a byte compiler bug with characters above ?\xFF.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4539
diff
changeset
|
1969 ;; value for point in the outbuffer: |
a9f83990e6bf
Fix a byte compiler bug with characters above ?\xFF.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4539
diff
changeset
|
1970 (goto-char (point-max byte-compile-outbuffer) byte-compile-outbuffer) |
428 | 1971 (set-buffer byte-compile-inbuffer) |
1972 (goto-char 1) | |
1973 | |
1974 ;; Compile the forms from the input buffer. | |
1975 (while (progn | |
1976 (while (progn (skip-chars-forward " \t\n\^L") | |
1977 (looking-at ";")) | |
1978 (forward-line 1)) | |
1979 (not (eobp))) | |
5568
b039c0f018b8
Error if byte-compiling a form hasn't wrapped byte-compile-inbuffer.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5566
diff
changeset
|
1980 (byte-compile-file-form (read byte-compile-inbuffer)) |
b039c0f018b8
Error if byte-compiling a form hasn't wrapped byte-compile-inbuffer.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5566
diff
changeset
|
1981 (or (eq byte-compile-inbuffer (current-buffer)) |
b039c0f018b8
Error if byte-compiling a form hasn't wrapped byte-compile-inbuffer.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5566
diff
changeset
|
1982 (error 'invalid-state |
b039c0f018b8
Error if byte-compiling a form hasn't wrapped byte-compile-inbuffer.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5566
diff
changeset
|
1983 "byte compiling didn't save-excursion appropriately" |
b039c0f018b8
Error if byte-compiling a form hasn't wrapped byte-compile-inbuffer.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5566
diff
changeset
|
1984 (current-buffer)))) |
428 | 1985 |
1986 ;; Compile pending forms at end of file. | |
1987 (byte-compile-flush-pending) | |
4677
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4639
diff
changeset
|
1988 (byte-compile-insert-header filename byte-compile-inbuffer |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4639
diff
changeset
|
1989 byte-compile-outbuffer) |
428 | 1990 (byte-compile-warn-about-unresolved-functions) |
1991 ;; Should we always do this? When calling multiple files, it | |
1992 ;; would be useful to delay this warning until all have | |
1993 ;; been compiled. | |
1994 (setq byte-compile-unresolved-functions nil))) | |
1995 (save-excursion | |
1996 (set-buffer byte-compile-outbuffer) | |
4623
a9f83990e6bf
Fix a byte compiler bug with characters above ?\xFF.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4539
diff
changeset
|
1997 (goto-char (point-min)) |
a9f83990e6bf
Fix a byte compiler bug with characters above ?\xFF.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4539
diff
changeset
|
1998 (when (and (or byte-compile-using-dynamic |
a9f83990e6bf
Fix a byte compiler bug with characters above ?\xFF.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4539
diff
changeset
|
1999 (eq buffer-file-coding-system 'raw-text-unix)) |
a9f83990e6bf
Fix a byte compiler bug with characters above ?\xFF.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4539
diff
changeset
|
2000 (re-search-forward "[^\x00-\xff]" nil t)) |
a9f83990e6bf
Fix a byte compiler bug with characters above ?\xFF.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4539
diff
changeset
|
2001 (when (or noninteractive byte-compile-verbose) |
a9f83990e6bf
Fix a byte compiler bug with characters above ?\xFF.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4539
diff
changeset
|
2002 (message |
a9f83990e6bf
Fix a byte compiler bug with characters above ?\xFF.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4539
diff
changeset
|
2003 "%s: includes char above ?\\xFF, recompiling sans dynamic features." |
a9f83990e6bf
Fix a byte compiler bug with characters above ?\xFF.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4539
diff
changeset
|
2004 filename)) |
a9f83990e6bf
Fix a byte compiler bug with characters above ?\xFF.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4539
diff
changeset
|
2005 (set-symbol-value-in-buffer 'byte-compile-dynamic nil |
a9f83990e6bf
Fix a byte compiler bug with characters above ?\xFF.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4539
diff
changeset
|
2006 byte-compile-inbuffer) |
a9f83990e6bf
Fix a byte compiler bug with characters above ?\xFF.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4539
diff
changeset
|
2007 (set-symbol-value-in-buffer 'byte-compile-dynamic-docstrings nil |
a9f83990e6bf
Fix a byte compiler bug with characters above ?\xFF.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4539
diff
changeset
|
2008 byte-compile-inbuffer) |
a9f83990e6bf
Fix a byte compiler bug with characters above ?\xFF.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4539
diff
changeset
|
2009 (setq byte-compile-force-escape-quoted t |
a9f83990e6bf
Fix a byte compiler bug with characters above ?\xFF.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4539
diff
changeset
|
2010 byte-compile-outbuffer |
a9f83990e6bf
Fix a byte compiler bug with characters above ?\xFF.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4539
diff
changeset
|
2011 (byte-compile-from-buffer byte-compile-inbuffer |
a9f83990e6bf
Fix a byte compiler bug with characters above ?\xFF.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4539
diff
changeset
|
2012 filename eval))))) |
428 | 2013 (if (not eval) |
2014 byte-compile-outbuffer | |
2015 (let (form) | |
2016 (while (condition-case nil | |
2017 (progn (setq form (read byte-compile-outbuffer)) | |
2018 t) | |
2019 (end-of-file nil)) | |
2020 (eval form))) | |
2021 (kill-buffer byte-compile-outbuffer) | |
2022 nil))) | |
2023 | |
4677
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4639
diff
changeset
|
2024 (defvar byte-compile-checks-and-comments-space 475 |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4639
diff
changeset
|
2025 "Number of octets of space for checks and comments; used by the dynamic |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4639
diff
changeset
|
2026 docstrings code.") |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4639
diff
changeset
|
2027 |
428 | 2028 (defun byte-compile-insert-header (filename byte-compile-inbuffer |
4677
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4639
diff
changeset
|
2029 byte-compile-outbuffer) |
428 | 2030 (set-buffer byte-compile-inbuffer) |
4686
cdabd56ce1b5
Fix various small issues with the multiple-value implementation.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4683
diff
changeset
|
2031 (let (comments) |
428 | 2032 (set-buffer byte-compile-outbuffer) |
4677
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4639
diff
changeset
|
2033 (delete-region 1 (1+ byte-compile-checks-and-comments-space)) |
428 | 2034 (goto-char 1) |
2035 ;; | |
2036 ;; The magic number of .elc files is ";ELC", or 0x3B454C43. After that is | |
2037 ;; the file-format version number (19 or 20) as a byte, followed by some | |
2038 ;; nulls. The primary motivation for doing this is to get some binary | |
2039 ;; characters up in the first line of the file so that `diff' will simply | |
2040 ;; say "Binary files differ" instead of actually doing a diff of two .elc | |
2041 ;; files. An extra benefit is that you can add this to /etc/magic: | |
2042 ;; | |
613 | 2043 ;; 0 string ;ELC XEmacs Lisp compiled file, |
428 | 2044 ;; >4 byte x version %d |
2045 ;; | |
2046 (insert | |
2047 ";ELC" | |
5503
7b5946dbfb96
Drop support for generating code appropriate for Emacs 19, bytecomp.el
Aidan Kehoe <kehoea@parhasard.net>
parents:
5475
diff
changeset
|
2048 20 |
4677
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4639
diff
changeset
|
2049 "\000\000\000\n") |
5573
f0f1fd0d8486
Remove ELC files from `binary-file-regexps', many of them are escape-quoted.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5568
diff
changeset
|
2050 (insert (format ";;;###coding system: %s\n" |
f0f1fd0d8486
Remove ELC files from `binary-file-regexps', many of them are escape-quoted.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5568
diff
changeset
|
2051 (coding-system-name buffer-file-coding-system))) |
4677
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4639
diff
changeset
|
2052 (insert (format |
4686
cdabd56ce1b5
Fix various small issues with the multiple-value implementation.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4683
diff
changeset
|
2053 "\n(or %s\n (error \"Loading this file requires %s\"))\n" |
cdabd56ce1b5
Fix various small issues with the multiple-value implementation.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4683
diff
changeset
|
2054 (let ((print-readably t)) |
cdabd56ce1b5
Fix various small issues with the multiple-value implementation.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4683
diff
changeset
|
2055 (prin1-to-string (if (> (length |
cdabd56ce1b5
Fix various small issues with the multiple-value implementation.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4683
diff
changeset
|
2056 byte-compile-checks-on-load) |
cdabd56ce1b5
Fix various small issues with the multiple-value implementation.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4683
diff
changeset
|
2057 1) |
cdabd56ce1b5
Fix various small issues with the multiple-value implementation.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4683
diff
changeset
|
2058 (cons 'and |
cdabd56ce1b5
Fix various small issues with the multiple-value implementation.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4683
diff
changeset
|
2059 (setq byte-compile-checks-on-load |
cdabd56ce1b5
Fix various small issues with the multiple-value implementation.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4683
diff
changeset
|
2060 (reverse |
cdabd56ce1b5
Fix various small issues with the multiple-value implementation.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4683
diff
changeset
|
2061 byte-compile-checks-on-load))) |
cdabd56ce1b5
Fix various small issues with the multiple-value implementation.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4683
diff
changeset
|
2062 (car byte-compile-checks-on-load)))) |
cdabd56ce1b5
Fix various small issues with the multiple-value implementation.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4683
diff
changeset
|
2063 (loop |
cdabd56ce1b5
Fix various small issues with the multiple-value implementation.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4683
diff
changeset
|
2064 for check in byte-compile-checks-on-load |
cdabd56ce1b5
Fix various small issues with the multiple-value implementation.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4683
diff
changeset
|
2065 with seen-first = nil |
cdabd56ce1b5
Fix various small issues with the multiple-value implementation.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4683
diff
changeset
|
2066 with res = "" |
cdabd56ce1b5
Fix various small issues with the multiple-value implementation.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4683
diff
changeset
|
2067 do |
cdabd56ce1b5
Fix various small issues with the multiple-value implementation.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4683
diff
changeset
|
2068 (if seen-first |
cdabd56ce1b5
Fix various small issues with the multiple-value implementation.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4683
diff
changeset
|
2069 (setq res (concat res ", ")) |
cdabd56ce1b5
Fix various small issues with the multiple-value implementation.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4683
diff
changeset
|
2070 (setq seen-first t)) |
cdabd56ce1b5
Fix various small issues with the multiple-value implementation.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4683
diff
changeset
|
2071 ;; Print featurep calls differently: |
cdabd56ce1b5
Fix various small issues with the multiple-value implementation.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4683
diff
changeset
|
2072 (if (and (eq (car check) 'featurep) |
cdabd56ce1b5
Fix various small issues with the multiple-value implementation.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4683
diff
changeset
|
2073 (eq (car (second check)) 'quote) |
cdabd56ce1b5
Fix various small issues with the multiple-value implementation.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4683
diff
changeset
|
2074 (symbolp (second (second check)))) |
cdabd56ce1b5
Fix various small issues with the multiple-value implementation.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4683
diff
changeset
|
2075 (setq res (concat res |
cdabd56ce1b5
Fix various small issues with the multiple-value implementation.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4683
diff
changeset
|
2076 (symbol-name (second (second check))))) |
cdabd56ce1b5
Fix various small issues with the multiple-value implementation.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4683
diff
changeset
|
2077 (setq res (concat res |
cdabd56ce1b5
Fix various small issues with the multiple-value implementation.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4683
diff
changeset
|
2078 (let ((print-readably t)) |
cdabd56ce1b5
Fix various small issues with the multiple-value implementation.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4683
diff
changeset
|
2079 (prin1-to-string check))))) |
cdabd56ce1b5
Fix various small issues with the multiple-value implementation.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4683
diff
changeset
|
2080 finally return res))) |
4677
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4639
diff
changeset
|
2081 (setq comments |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4639
diff
changeset
|
2082 (with-string-as-buffer-contents "" |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4639
diff
changeset
|
2083 (insert "\n;;; compiled by " |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4639
diff
changeset
|
2084 (or (and (boundp 'user-mail-address) user-mail-address) |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4639
diff
changeset
|
2085 (concat (user-login-name) "@" (system-name))) |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4639
diff
changeset
|
2086 " on " |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4639
diff
changeset
|
2087 (current-time-string) "\n;;; from file " filename "\n") |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4639
diff
changeset
|
2088 (insert ";;; emacs version " emacs-version ".\n") |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4639
diff
changeset
|
2089 (insert ";;; bytecomp version " byte-compile-version "\n;;; " |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4639
diff
changeset
|
2090 (cond |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4639
diff
changeset
|
2091 ((eq byte-optimize 'source) |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4639
diff
changeset
|
2092 "source-level optimization only") |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4639
diff
changeset
|
2093 ((eq byte-optimize 'byte) "byte-level optimization only") |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4639
diff
changeset
|
2094 (byte-optimize "optimization is on") |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4639
diff
changeset
|
2095 (t "optimization is off")) |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4639
diff
changeset
|
2096 "\n"))) |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4639
diff
changeset
|
2097 |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4639
diff
changeset
|
2098 ;; We won't trip this unless the byte-compiler changes, in which case |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4639
diff
changeset
|
2099 ;; it's just a matter of upping the space. |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4639
diff
changeset
|
2100 (assert (natnump (- (1+ byte-compile-checks-and-comments-space) (point))) |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4639
diff
changeset
|
2101 t "Not enough space for the feature checks!") |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4639
diff
changeset
|
2102 |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4639
diff
changeset
|
2103 (if (natnump (- (1+ byte-compile-checks-and-comments-space) |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4639
diff
changeset
|
2104 (+ (point) (length comments)))) |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4639
diff
changeset
|
2105 (insert comments)) |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4639
diff
changeset
|
2106 (insert-char ?\ (- (1+ byte-compile-checks-and-comments-space) |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4639
diff
changeset
|
2107 (point))))) |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4639
diff
changeset
|
2108 |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4639
diff
changeset
|
2109 (defun byte-compile-maybe-reset-coding (byte-compile-inbuffer |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4639
diff
changeset
|
2110 byte-compile-outbuffer) |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4639
diff
changeset
|
2111 ;; We also reserve some space for the feature checks: |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4639
diff
changeset
|
2112 (goto-char 1) |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4639
diff
changeset
|
2113 (insert-char ?\ byte-compile-checks-and-comments-space) |
771 | 2114 (if (or (featurep '(not mule)) ;; Don't scan buffer if we are not muleized |
4623
a9f83990e6bf
Fix a byte compiler bug with characters above ?\xFF.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4539
diff
changeset
|
2115 (and |
a9f83990e6bf
Fix a byte compiler bug with characters above ?\xFF.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4539
diff
changeset
|
2116 (not byte-compile-force-escape-quoted) |
a9f83990e6bf
Fix a byte compiler bug with characters above ?\xFF.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4539
diff
changeset
|
2117 (save-excursion |
a9f83990e6bf
Fix a byte compiler bug with characters above ?\xFF.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4539
diff
changeset
|
2118 (set-buffer byte-compile-inbuffer) |
a9f83990e6bf
Fix a byte compiler bug with characters above ?\xFF.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4539
diff
changeset
|
2119 (goto-char (point-min)) |
a9f83990e6bf
Fix a byte compiler bug with characters above ?\xFF.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4539
diff
changeset
|
2120 ;; Look for any non-Latin-1 literals or Unicode character |
a9f83990e6bf
Fix a byte compiler bug with characters above ?\xFF.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4539
diff
changeset
|
2121 ;; escapes. Any such occurrences in a @#COUNT comment will lead |
a9f83990e6bf
Fix a byte compiler bug with characters above ?\xFF.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4539
diff
changeset
|
2122 ;; to an escape-quoted coding cookie being inserted, but this is |
a9f83990e6bf
Fix a byte compiler bug with characters above ?\xFF.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4539
diff
changeset
|
2123 ;; not true of ordinary comments. |
a9f83990e6bf
Fix a byte compiler bug with characters above ?\xFF.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4539
diff
changeset
|
2124 (let ((non-latin-1-re |
a9f83990e6bf
Fix a byte compiler bug with characters above ?\xFF.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4539
diff
changeset
|
2125 (concat "[^\000-\377]" |
4677
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4639
diff
changeset
|
2126 #r"\|\\u[0-9a-fA-F]\{4,4\}\|\\U[0-9a-fA-F]" |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4639
diff
changeset
|
2127 "\\{8,8\\}")) |
4623
a9f83990e6bf
Fix a byte compiler bug with characters above ?\xFF.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4539
diff
changeset
|
2128 (case-fold-search nil)) |
a9f83990e6bf
Fix a byte compiler bug with characters above ?\xFF.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4539
diff
changeset
|
2129 (catch 'need-to-escape-quote |
a9f83990e6bf
Fix a byte compiler bug with characters above ?\xFF.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4539
diff
changeset
|
2130 (while (re-search-forward non-latin-1-re nil t) |
a9f83990e6bf
Fix a byte compiler bug with characters above ?\xFF.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4539
diff
changeset
|
2131 (skip-chars-backward "^;" (point-at-bol)) |
a9f83990e6bf
Fix a byte compiler bug with characters above ?\xFF.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4539
diff
changeset
|
2132 (if (bolp) (throw 'need-to-escape-quote nil)) |
a9f83990e6bf
Fix a byte compiler bug with characters above ?\xFF.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4539
diff
changeset
|
2133 (forward-line 1)) |
a9f83990e6bf
Fix a byte compiler bug with characters above ?\xFF.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4539
diff
changeset
|
2134 t))))) |
771 | 2135 (setq buffer-file-coding-system 'raw-text-unix) |
2136 (setq buffer-file-coding-system 'escape-quoted) | |
4677
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4639
diff
changeset
|
2137 (pushnew '(featurep 'mule) byte-compile-checks-on-load) |
771 | 2138 (save-excursion |
2139 (set-buffer byte-compile-inbuffer) | |
2140 (setq byte-compile-dynamic nil | |
4677
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4639
diff
changeset
|
2141 byte-compile-dynamic-docstrings nil)))) |
428 | 2142 |
2143 (defun byte-compile-output-file-form (form) | |
2144 ;; writes the given form to the output buffer, being careful of docstrings | |
2145 ;; in defun, defmacro, defvar, defconst and autoload because make-docfile is | |
2146 ;; so amazingly stupid. | |
2147 ;; defalias calls are output directly by byte-compile-file-form-defmumble; | |
2148 ;; it does not pay to first build the defalias in defmumble and then parse | |
2149 ;; it here. | |
4539
061e030e3270
Fix some bugs in load-history construction, built-in symbol file names.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4529
diff
changeset
|
2150 (if (and (memq (car-safe form) '(defun defmacro defvar defconst autoload |
061e030e3270
Fix some bugs in load-history construction, built-in symbol file names.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4529
diff
changeset
|
2151 custom-declare-variable)) |
428 | 2152 (stringp (nth 3 form))) |
2153 (byte-compile-output-docform nil nil '("\n(" 3 ")") form nil | |
4539
061e030e3270
Fix some bugs in load-history construction, built-in symbol file names.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4529
diff
changeset
|
2154 (memq (car form) |
061e030e3270
Fix some bugs in load-history construction, built-in symbol file names.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4529
diff
changeset
|
2155 '(autoload custom-declare-variable))) |
5560
58b38d5b32d0
Implement print-circle, allowing recursive and circular structures to be read.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5548
diff
changeset
|
2156 (let* ((print-escape-newlines t) |
58b38d5b32d0
Implement print-circle, allowing recursive and circular structures to be read.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5548
diff
changeset
|
2157 (print-length nil) |
58b38d5b32d0
Implement print-circle, allowing recursive and circular structures to be read.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5548
diff
changeset
|
2158 (print-level nil) |
58b38d5b32d0
Implement print-circle, allowing recursive and circular structures to be read.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5548
diff
changeset
|
2159 (print-readably t) ; print #[] for bytecode, 'x for (quote x) |
58b38d5b32d0
Implement print-circle, allowing recursive and circular structures to be read.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5548
diff
changeset
|
2160 (print-gensym byte-compile-print-gensym) |
58b38d5b32d0
Implement print-circle, allowing recursive and circular structures to be read.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5548
diff
changeset
|
2161 (print-continuous-numbering print-gensym) |
58b38d5b32d0
Implement print-circle, allowing recursive and circular structures to be read.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5548
diff
changeset
|
2162 (print-circle t)) |
5391
f9dc75bdbdc4
Implement #'load-time-value less hackishly, by modifying the byte compiler.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5377
diff
changeset
|
2163 (when byte-compile-output-preface |
f9dc75bdbdc4
Implement #'load-time-value less hackishly, by modifying the byte compiler.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5377
diff
changeset
|
2164 (princ "\n(progn " byte-compile-outbuffer) |
f9dc75bdbdc4
Implement #'load-time-value less hackishly, by modifying the byte compiler.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5377
diff
changeset
|
2165 (prin1 byte-compile-output-preface byte-compile-outbuffer)) |
428 | 2166 (princ "\n" byte-compile-outbuffer) |
2167 (prin1 form byte-compile-outbuffer) | |
5391
f9dc75bdbdc4
Implement #'load-time-value less hackishly, by modifying the byte compiler.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5377
diff
changeset
|
2168 (when byte-compile-output-preface (princ ")" byte-compile-outbuffer)) |
428 | 2169 nil))) |
2170 | |
2171 (defun byte-compile-output-docform (preface name info form specindex quoted) | |
2172 "Print a form with a doc string. INFO is (prefix doc-index postfix). | |
2173 If PREFACE and NAME are non-nil, print them too, | |
2174 before INFO and the FORM but after the doc string itself. | |
2175 If SPECINDEX is non-nil, it is the index in FORM | |
2176 of the function bytecode string. In that case, | |
2177 we output that argument and the following argument (the constants vector) | |
2178 together, for lazy loading. | |
2179 QUOTED says that we have to put a quote before the | |
2180 list that represents a doc string reference. | |
2181 `autoload' needs that." | |
2182 ;; We need to examine byte-compile-dynamic-docstrings | |
2183 ;; in the input buffer (now current), not in the output buffer. | |
2184 (let ((dynamic-docstrings byte-compile-dynamic-docstrings)) | |
2185 (set-buffer | |
2186 (prog1 (current-buffer) | |
2187 (set-buffer byte-compile-outbuffer) | |
2188 (let (position) | |
2189 | |
2190 ;; Insert the doc string, and make it a comment with #@LENGTH. | |
2191 (and (>= (nth 1 info) 0) | |
2192 dynamic-docstrings | |
2193 (progn | |
2194 ;; Make the doc string start at beginning of line | |
2195 ;; for make-docfile's sake. | |
2196 (insert "\n") | |
2197 (setq position | |
2198 (byte-compile-output-as-comment | |
2199 (nth (nth 1 info) form) nil)) | |
2200 ;; If the doc string starts with * (a user variable), | |
2201 ;; negate POSITION. | |
2202 (if (and (stringp (nth (nth 1 info) form)) | |
2203 (> (length (nth (nth 1 info) form)) 0) | |
2204 (char= (aref (nth (nth 1 info) form) 0) ?*)) | |
2205 (setq position (- position))))) | |
5560
58b38d5b32d0
Implement print-circle, allowing recursive and circular structures to be read.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5548
diff
changeset
|
2206 (byte-compile-flush-pending) |
58b38d5b32d0
Implement print-circle, allowing recursive and circular structures to be read.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5548
diff
changeset
|
2207 (let* ((print-escape-newlines t) |
58b38d5b32d0
Implement print-circle, allowing recursive and circular structures to be read.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5548
diff
changeset
|
2208 (print-readably t) ; print #[] for bytecode, 'x for (quote x) |
58b38d5b32d0
Implement print-circle, allowing recursive and circular structures to be read.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5548
diff
changeset
|
2209 (print-gensym byte-compile-print-gensym) |
58b38d5b32d0
Implement print-circle, allowing recursive and circular structures to be read.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5548
diff
changeset
|
2210 (print-continuous-numbering print-gensym) |
58b38d5b32d0
Implement print-circle, allowing recursive and circular structures to be read.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5548
diff
changeset
|
2211 (print-circle t) |
58b38d5b32d0
Implement print-circle, allowing recursive and circular structures to be read.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5548
diff
changeset
|
2212 (index 0)) |
5391
f9dc75bdbdc4
Implement #'load-time-value less hackishly, by modifying the byte compiler.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5377
diff
changeset
|
2213 (when byte-compile-output-preface |
f9dc75bdbdc4
Implement #'load-time-value less hackishly, by modifying the byte compiler.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5377
diff
changeset
|
2214 (princ "\n(progn " byte-compile-outbuffer) |
f9dc75bdbdc4
Implement #'load-time-value less hackishly, by modifying the byte compiler.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5377
diff
changeset
|
2215 (prin1 byte-compile-output-preface byte-compile-outbuffer)) |
f9dc75bdbdc4
Implement #'load-time-value less hackishly, by modifying the byte compiler.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5377
diff
changeset
|
2216 (if preface |
f9dc75bdbdc4
Implement #'load-time-value less hackishly, by modifying the byte compiler.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5377
diff
changeset
|
2217 (progn |
f9dc75bdbdc4
Implement #'load-time-value less hackishly, by modifying the byte compiler.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5377
diff
changeset
|
2218 (insert preface) |
f9dc75bdbdc4
Implement #'load-time-value less hackishly, by modifying the byte compiler.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5377
diff
changeset
|
2219 (prin1 name byte-compile-outbuffer))) |
f9dc75bdbdc4
Implement #'load-time-value less hackishly, by modifying the byte compiler.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5377
diff
changeset
|
2220 (insert (car info)) |
428 | 2221 (prin1 (car form) byte-compile-outbuffer) |
2222 (while (setq form (cdr form)) | |
2223 (setq index (1+ index)) | |
2224 (insert " ") | |
2225 (cond ((and (numberp specindex) (= index specindex)) | |
2226 (let ((position | |
2227 (byte-compile-output-as-comment | |
2228 (cons (car form) (nth 1 form)) | |
2229 t))) | |
2230 (princ (format "(#$ . %d) nil" position) | |
2231 byte-compile-outbuffer) | |
2232 (setq form (cdr form)) | |
2233 (setq index (1+ index)))) | |
2234 ((= index (nth 1 info)) | |
2235 (if position | |
2236 (princ (format (if quoted "'(#$ . %d)" "(#$ . %d)") | |
2237 position) | |
2238 byte-compile-outbuffer) | |
2239 (let ((print-escape-newlines nil)) | |
2240 (goto-char (prog1 (1+ (point)) | |
2241 (prin1 (car form) | |
2242 byte-compile-outbuffer))) | |
2243 (insert "\\\n") | |
2244 (goto-char (point-max))))) | |
2245 (t | |
2246 (prin1 (car form) byte-compile-outbuffer))))) | |
5391
f9dc75bdbdc4
Implement #'load-time-value less hackishly, by modifying the byte compiler.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5377
diff
changeset
|
2247 (insert (nth 2 info)) |
f9dc75bdbdc4
Implement #'load-time-value less hackishly, by modifying the byte compiler.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5377
diff
changeset
|
2248 (when byte-compile-output-preface |
f9dc75bdbdc4
Implement #'load-time-value less hackishly, by modifying the byte compiler.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5377
diff
changeset
|
2249 (princ ")" byte-compile-outbuffer)))))) |
428 | 2250 nil) |
2251 | |
2252 (defun byte-compile-keep-pending (form &optional handler) | |
2253 (if (memq byte-optimize '(t source)) | |
2254 (setq form (byte-optimize-form form t))) | |
2255 (if handler | |
2256 (let ((for-effect t)) | |
2257 ;; To avoid consing up monstrously large forms at load time, we split | |
2258 ;; the output regularly. | |
2259 (and (memq (car-safe form) '(fset defalias define-function)) | |
2260 (nthcdr 300 byte-compile-output) | |
2261 (byte-compile-flush-pending)) | |
2262 (funcall handler form) | |
2263 (when for-effect | |
2264 (byte-compile-discard))) | |
2265 (byte-compile-form form t)) | |
2266 nil) | |
2267 | |
2268 (defun byte-compile-flush-pending () | |
2269 (if byte-compile-output | |
2270 (let ((form (byte-compile-out-toplevel t 'file))) | |
2271 (cond ((eq (car-safe form) 'progn) | |
4783
e29fcfd8df5f
Eliminate most core code byte-compile warnings.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4775
diff
changeset
|
2272 (mapc 'byte-compile-output-file-form (cdr form))) |
428 | 2273 (form |
2274 (byte-compile-output-file-form form))) | |
2275 (setq byte-compile-constants nil | |
2276 byte-compile-variables nil | |
2277 byte-compile-depth 0 | |
2278 byte-compile-maxdepth 0 | |
2279 byte-compile-output nil)))) | |
2280 | |
2281 (defun byte-compile-file-form (form) | |
2282 (let ((byte-compile-current-form nil) ; close over this for warnings. | |
5391
f9dc75bdbdc4
Implement #'load-time-value less hackishly, by modifying the byte compiler.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5377
diff
changeset
|
2283 (byte-compile-output-preface nil) |
428 | 2284 handler) |
2285 (cond | |
2286 ((not (consp form)) | |
2287 (byte-compile-keep-pending form)) | |
2288 ((and (symbolp (car form)) | |
2289 (setq handler (get (car form) 'byte-hunk-handler))) | |
2290 (cond ((setq form (funcall handler form)) | |
2291 (byte-compile-flush-pending) | |
2292 (byte-compile-output-file-form form)))) | |
2293 ((eq form (setq form (macroexpand form byte-compile-macro-environment))) | |
2294 (byte-compile-keep-pending form)) | |
2295 (t | |
2296 (byte-compile-file-form form))))) | |
2297 | |
2298 ;; Functions and variables with doc strings must be output separately, | |
2299 ;; so make-docfile can recognize them. Most other things can be output | |
2300 ;; as byte-code. | |
2301 | |
2302 (put 'defsubst 'byte-hunk-handler 'byte-compile-file-form-defsubst) | |
2303 (defun byte-compile-file-form-defsubst (form) | |
2304 (cond ((assq (nth 1 form) byte-compile-unresolved-functions) | |
2305 (setq byte-compile-current-form (nth 1 form)) | |
2306 (byte-compile-warn "defsubst %s was used before it was defined" | |
2307 (nth 1 form)))) | |
2308 (byte-compile-file-form | |
2309 (macroexpand form byte-compile-macro-environment)) | |
2310 ;; Return nil so the form is not output twice. | |
2311 nil) | |
2312 | |
2313 (put 'autoload 'byte-hunk-handler 'byte-compile-file-form-autoload) | |
2314 (defun byte-compile-file-form-autoload (form) | |
2315 ;; | |
2316 ;; If this is an autoload of a macro, and all arguments are constants (that | |
2317 ;; is, there is no hairy computation going on here) then evaluate the form | |
2318 ;; at compile-time. This is so that we can make use of macros which we | |
2319 ;; have autoloaded from the file being compiled. Normal function autoloads | |
2320 ;; are not automatically evaluated at compile time, because there's not | |
2321 ;; much point to it (so why bother cluttering up the compile-time namespace.) | |
2322 ;; | |
2323 ;; If this is an autoload of a function, then record its definition in the | |
2324 ;; byte-compile-autoload-environment to suppress any `not known to be | |
2325 ;; defined' warnings at the end of this file (this only matters for | |
2326 ;; functions which are autoloaded and compiled in the same file, if the | |
2327 ;; autoload already exists in the compilation environment, we wouldn't have | |
2328 ;; warned anyway.) | |
2329 ;; | |
2330 (let* ((name (if (byte-compile-constp (nth 1 form)) | |
2331 (eval (nth 1 form)))) | |
2332 ;; In v19, the 5th arg to autoload can be t, nil, 'macro, or 'keymap. | |
2333 (macrop (and (byte-compile-constp (nth 5 form)) | |
2334 (memq (eval (nth 5 form)) '(t macro)))) | |
2335 ;; (functionp (and (byte-compile-constp (nth 5 form)) | |
2336 ;; (eq 'nil (eval (nth 5 form))))) | |
2337 ) | |
2338 (if (and macrop | |
2339 (let ((form form)) | |
2340 ;; all forms are constant | |
2341 (while (if (setq form (cdr form)) | |
2342 (byte-compile-constp (car form)))) | |
2343 (null form))) | |
440 | 2344 ;; eval the macro autoload into the compilation environment |
428 | 2345 (eval form)) |
2346 | |
2347 (if name | |
2348 (let ((old (assq name byte-compile-autoload-environment))) | |
2349 (cond (old | |
2350 (if (memq 'redefine byte-compile-warnings) | |
2351 (byte-compile-warn "multiple autoloads for %s" name)) | |
2352 (setcdr old form)) | |
2353 (t | |
2354 ;; We only use the names in the autoload environment, but | |
2355 ;; it might be useful to have the bodies some day. | |
2356 (setq byte-compile-autoload-environment | |
2357 (cons (cons name form) | |
2358 byte-compile-autoload-environment))))))) | |
2359 ;; | |
2360 ;; Now output the form. | |
2361 (if (stringp (nth 3 form)) | |
2362 form | |
2363 ;; No doc string, so we can compile this as a normal form. | |
2364 (byte-compile-keep-pending form 'byte-compile-normal-call))) | |
2365 | |
442 | 2366 (put 'defvar 'byte-hunk-handler 'byte-compile-file-form-defvar-or-defconst) |
2367 (put 'defconst 'byte-hunk-handler 'byte-compile-file-form-defvar-or-defconst) | |
2368 (defun byte-compile-file-form-defvar-or-defconst (form) | |
2369 ;; (defvar|defconst VAR [VALUE [DOCSTRING]]) | |
428 | 2370 (if (> (length form) 4) |
442 | 2371 (byte-compile-warn |
2372 "%s %s called with %d arguments, but accepts only %s" | |
2373 (car form) (nth 1 form) (length (cdr form)) 3)) | |
428 | 2374 (if (and (> (length form) 3) (not (stringp (nth 3 form)))) |
2375 (byte-compile-warn "Third arg to %s %s is not a string: %s" | |
2376 (car form) (nth 1 form) (nth 3 form))) | |
2377 (if (null (nth 3 form)) | |
2378 ;; Since there is no doc string, we can compile this as a normal form, | |
2379 ;; and not do a file-boundary. | |
2380 (byte-compile-keep-pending form) | |
2381 (if (memq 'free-vars byte-compile-warnings) | |
2382 (setq byte-compile-bound-variables | |
2383 (cons (cons (nth 1 form) byte-compile-global-bit) | |
2384 byte-compile-bound-variables))) | |
2385 (cond ((consp (nth 2 form)) | |
2386 (setq form (copy-sequence form)) | |
2387 (setcar (cdr (cdr form)) | |
2388 (byte-compile-top-level (nth 2 form) nil 'file)))) | |
2389 | |
2390 ;; The following turns out not to be necessary, since we emit a call to | |
2391 ;; defvar, which can hack Vfile_domain by itself! | |
2392 ;; | |
2393 ;; If a file domain has been set, emit (put 'VAR 'variable-domain ...) | |
2394 ;; after this defvar. | |
2395 ; (if byte-compile-file-domain | |
2396 ; (progn | |
2397 ; ;; Actually, this will emit the (put ...) before the (defvar ...) | |
2398 ; ;; but I don't think that can matter in this case. | |
2399 ; (byte-compile-keep-pending | |
2400 ; (list 'put (list 'quote (nth 1 form)) ''variable-domain | |
2401 ; (list 'quote byte-compile-file-domain))))) | |
2402 form)) | |
2403 | |
2404 (put 'require 'byte-hunk-handler 'byte-compile-file-form-eval-boundary) | |
2405 (defun byte-compile-file-form-eval-boundary (form) | |
2406 (eval form) | |
2407 (byte-compile-keep-pending form 'byte-compile-normal-call)) | |
2408 | |
4686
cdabd56ce1b5
Fix various small issues with the multiple-value implementation.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4683
diff
changeset
|
2409 ;; XEmacs change: be careful about multiple values with these three forms. |
cdabd56ce1b5
Fix various small issues with the multiple-value implementation.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4683
diff
changeset
|
2410 (put 'progn 'byte-hunk-handler |
cdabd56ce1b5
Fix various small issues with the multiple-value implementation.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4683
diff
changeset
|
2411 #'(lambda (form) |
cdabd56ce1b5
Fix various small issues with the multiple-value implementation.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4683
diff
changeset
|
2412 (mapc 'byte-compile-file-form (cdr form)) |
cdabd56ce1b5
Fix various small issues with the multiple-value implementation.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4683
diff
changeset
|
2413 ;; Return nil so the forms are not output twice. |
cdabd56ce1b5
Fix various small issues with the multiple-value implementation.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4683
diff
changeset
|
2414 nil)) |
cdabd56ce1b5
Fix various small issues with the multiple-value implementation.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4683
diff
changeset
|
2415 |
cdabd56ce1b5
Fix various small issues with the multiple-value implementation.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4683
diff
changeset
|
2416 (put 'prog1 'byte-hunk-handler |
cdabd56ce1b5
Fix various small issues with the multiple-value implementation.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4683
diff
changeset
|
2417 #'(lambda (form) |
cdabd56ce1b5
Fix various small issues with the multiple-value implementation.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4683
diff
changeset
|
2418 (when (first form) |
cdabd56ce1b5
Fix various small issues with the multiple-value implementation.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4683
diff
changeset
|
2419 (byte-compile-file-form `(or ,(first form) nil)) |
cdabd56ce1b5
Fix various small issues with the multiple-value implementation.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4683
diff
changeset
|
2420 (mapc 'byte-compile-file-form (cdr form)) |
cdabd56ce1b5
Fix various small issues with the multiple-value implementation.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4683
diff
changeset
|
2421 nil))) |
cdabd56ce1b5
Fix various small issues with the multiple-value implementation.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4683
diff
changeset
|
2422 |
cdabd56ce1b5
Fix various small issues with the multiple-value implementation.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4683
diff
changeset
|
2423 (put 'prog2 'byte-hunk-handler |
cdabd56ce1b5
Fix various small issues with the multiple-value implementation.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4683
diff
changeset
|
2424 #'(lambda (form) |
cdabd56ce1b5
Fix various small issues with the multiple-value implementation.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4683
diff
changeset
|
2425 (when (first form) |
cdabd56ce1b5
Fix various small issues with the multiple-value implementation.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4683
diff
changeset
|
2426 (byte-compile-file-form (first form)) |
cdabd56ce1b5
Fix various small issues with the multiple-value implementation.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4683
diff
changeset
|
2427 (when (second form) |
cdabd56ce1b5
Fix various small issues with the multiple-value implementation.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4683
diff
changeset
|
2428 (setq form (cdr form)) |
cdabd56ce1b5
Fix various small issues with the multiple-value implementation.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4683
diff
changeset
|
2429 (byte-compile-file-form `(or ,(first form) nil)) |
cdabd56ce1b5
Fix various small issues with the multiple-value implementation.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4683
diff
changeset
|
2430 (mapc 'byte-compile-file-form (cdr form)) |
cdabd56ce1b5
Fix various small issues with the multiple-value implementation.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4683
diff
changeset
|
2431 nil)))) |
428 | 2432 |
2433 ;; This handler is not necessary, but it makes the output from dont-compile | |
2434 ;; and similar macros cleaner. | |
2435 (put 'eval 'byte-hunk-handler 'byte-compile-file-form-eval) | |
2436 (defun byte-compile-file-form-eval (form) | |
2437 (if (eq (car-safe (nth 1 form)) 'quote) | |
2438 (nth 1 (nth 1 form)) | |
2439 (byte-compile-keep-pending form))) | |
2440 | |
2441 (put 'defun 'byte-hunk-handler 'byte-compile-file-form-defun) | |
2442 (defun byte-compile-file-form-defun (form) | |
2443 (byte-compile-file-form-defmumble form nil)) | |
2444 | |
2445 (put 'defmacro 'byte-hunk-handler 'byte-compile-file-form-defmacro) | |
2446 (defun byte-compile-file-form-defmacro (form) | |
2447 (byte-compile-file-form-defmumble form t)) | |
2448 | |
2449 (defun byte-compile-file-form-defmumble (form macrop) | |
2450 (let* ((name (car (cdr form))) | |
2451 (this-kind (if macrop 'byte-compile-macro-environment | |
2452 'byte-compile-function-environment)) | |
2453 (that-kind (if macrop 'byte-compile-function-environment | |
2454 'byte-compile-macro-environment)) | |
2455 (this-one (assq name (symbol-value this-kind))) | |
2456 (that-one (assq name (symbol-value that-kind))) | |
2457 (byte-compile-free-references nil) | |
2458 (byte-compile-free-assignments nil)) | |
2459 | |
2460 ;; When a function or macro is defined, add it to the call tree so that | |
2461 ;; we can tell when functions are not used. | |
2462 (if byte-compile-generate-call-tree | |
2463 (or (assq name byte-compile-call-tree) | |
2464 (setq byte-compile-call-tree | |
2465 (cons (list name nil nil) byte-compile-call-tree)))) | |
2466 | |
2467 (setq byte-compile-current-form name) ; for warnings | |
2468 (when (memq 'redefine byte-compile-warnings) | |
2469 (byte-compile-arglist-warn form macrop)) | |
2470 (defvar filename) ; #### filename used free | |
2471 (when byte-compile-verbose | |
2472 (message "Compiling %s... (%s)" | |
2473 (if filename (file-name-nondirectory filename) "") | |
2474 (nth 1 form))) | |
2475 (cond (that-one | |
2476 (when (and (memq 'redefine byte-compile-warnings) | |
2477 ;; hack hack: don't warn when compiling the stubs in | |
2478 ;; bytecomp-runtime... | |
2479 (not (assq (nth 1 form) | |
2480 byte-compile-initial-macro-environment))) | |
2481 (byte-compile-warn | |
2482 "%s defined multiple times, as both function and macro" | |
2483 (nth 1 form))) | |
2484 (setcdr that-one nil)) | |
2485 (this-one | |
2486 (when (and (memq 'redefine byte-compile-warnings) | |
2487 ;; hack: don't warn when compiling the magic internal | |
2488 ;; byte-compiler macros in bytecomp-runtime.el... | |
2489 (not (assq (nth 1 form) | |
2490 byte-compile-initial-macro-environment))) | |
2491 (byte-compile-warn "%s %s defined multiple times in this file" | |
2492 (if macrop "macro" "function") | |
2493 (nth 1 form)))) | |
2494 ((and (fboundp name) | |
2495 (or (subrp (symbol-function name)) | |
2496 (eq (car-safe (symbol-function name)) | |
2497 (if macrop 'lambda 'macro)))) | |
2498 (if (memq 'redefine byte-compile-warnings) | |
2499 (byte-compile-warn "%s %s being redefined as a %s" | |
2500 (if (subrp (symbol-function name)) | |
2501 "subr" | |
2502 (if macrop "function" "macro")) | |
2503 (nth 1 form) | |
2504 (if macrop "macro" "function"))) | |
2505 ;; shadow existing definition | |
2506 (set this-kind | |
2507 (cons (cons name nil) (symbol-value this-kind))))) | |
2508 (let ((body (nthcdr 3 form))) | |
2509 (if (and (stringp (car body)) | |
2510 (symbolp (car-safe (cdr-safe body))) | |
2511 (car-safe (cdr-safe body)) | |
2512 (stringp (car-safe (cdr-safe (cdr-safe body))))) | |
2513 (byte-compile-warn "Probable `\"' without `\\' in doc string of %s" | |
2514 (nth 1 form)))) | |
5506
b0d87f92e60b
Complete support for macro-declaration-function, bytecomp{,-runtime}.el
Aidan Kehoe <kehoea@parhasard.net>
parents:
5503
diff
changeset
|
2515 |
b0d87f92e60b
Complete support for macro-declaration-function, bytecomp{,-runtime}.el
Aidan Kehoe <kehoea@parhasard.net>
parents:
5503
diff
changeset
|
2516 ;; Generate code for declarations in macro definitions. |
b0d87f92e60b
Complete support for macro-declaration-function, bytecomp{,-runtime}.el
Aidan Kehoe <kehoea@parhasard.net>
parents:
5503
diff
changeset
|
2517 ;; Remove declarations from the body of the macro definition. |
b0d87f92e60b
Complete support for macro-declaration-function, bytecomp{,-runtime}.el
Aidan Kehoe <kehoea@parhasard.net>
parents:
5503
diff
changeset
|
2518 (when macrop |
b0d87f92e60b
Complete support for macro-declaration-function, bytecomp{,-runtime}.el
Aidan Kehoe <kehoea@parhasard.net>
parents:
5503
diff
changeset
|
2519 (let ((byte-compile-defmacro-body (nthcdr 3 form))) |
b0d87f92e60b
Complete support for macro-declaration-function, bytecomp{,-runtime}.el
Aidan Kehoe <kehoea@parhasard.net>
parents:
5503
diff
changeset
|
2520 (if (stringp (car byte-compile-defmacro-body)) |
b0d87f92e60b
Complete support for macro-declaration-function, bytecomp{,-runtime}.el
Aidan Kehoe <kehoea@parhasard.net>
parents:
5503
diff
changeset
|
2521 (setq byte-compile-defmacro-body (nthcdr 4 form))) |
b0d87f92e60b
Complete support for macro-declaration-function, bytecomp{,-runtime}.el
Aidan Kehoe <kehoea@parhasard.net>
parents:
5503
diff
changeset
|
2522 (when (and (consp byte-compile-defmacro-body) |
b0d87f92e60b
Complete support for macro-declaration-function, bytecomp{,-runtime}.el
Aidan Kehoe <kehoea@parhasard.net>
parents:
5503
diff
changeset
|
2523 (eq 'declare (car-safe (car byte-compile-defmacro-body)))) |
b0d87f92e60b
Complete support for macro-declaration-function, bytecomp{,-runtime}.el
Aidan Kehoe <kehoea@parhasard.net>
parents:
5503
diff
changeset
|
2524 (if (eq 'declare (car-safe (car-safe |
b0d87f92e60b
Complete support for macro-declaration-function, bytecomp{,-runtime}.el
Aidan Kehoe <kehoea@parhasard.net>
parents:
5503
diff
changeset
|
2525 (cdr byte-compile-defmacro-body)))) |
b0d87f92e60b
Complete support for macro-declaration-function, bytecomp{,-runtime}.el
Aidan Kehoe <kehoea@parhasard.net>
parents:
5503
diff
changeset
|
2526 (byte-compile-warn "Multiple macro-specific `declare' calls \ |
b0d87f92e60b
Complete support for macro-declaration-function, bytecomp{,-runtime}.el
Aidan Kehoe <kehoea@parhasard.net>
parents:
5503
diff
changeset
|
2527 not supported by XEmacs.")) |
b0d87f92e60b
Complete support for macro-declaration-function, bytecomp{,-runtime}.el
Aidan Kehoe <kehoea@parhasard.net>
parents:
5503
diff
changeset
|
2528 (setq byte-compile-output-preface |
b0d87f92e60b
Complete support for macro-declaration-function, bytecomp{,-runtime}.el
Aidan Kehoe <kehoea@parhasard.net>
parents:
5503
diff
changeset
|
2529 (byte-compile-top-level |
b0d87f92e60b
Complete support for macro-declaration-function, bytecomp{,-runtime}.el
Aidan Kehoe <kehoea@parhasard.net>
parents:
5503
diff
changeset
|
2530 `(progn (and macro-declaration-function |
b0d87f92e60b
Complete support for macro-declaration-function, bytecomp{,-runtime}.el
Aidan Kehoe <kehoea@parhasard.net>
parents:
5503
diff
changeset
|
2531 (funcall macro-declaration-function |
b0d87f92e60b
Complete support for macro-declaration-function, bytecomp{,-runtime}.el
Aidan Kehoe <kehoea@parhasard.net>
parents:
5503
diff
changeset
|
2532 ',name |
b0d87f92e60b
Complete support for macro-declaration-function, bytecomp{,-runtime}.el
Aidan Kehoe <kehoea@parhasard.net>
parents:
5503
diff
changeset
|
2533 ',(car byte-compile-defmacro-body))) |
b0d87f92e60b
Complete support for macro-declaration-function, bytecomp{,-runtime}.el
Aidan Kehoe <kehoea@parhasard.net>
parents:
5503
diff
changeset
|
2534 ,byte-compile-output-preface) t 'file))))) |
428 | 2535 (let* ((new-one (byte-compile-lambda (cons 'lambda (nthcdr 2 form)))) |
5106
8c3671b62dad
Remove #'byte-compile-compiled-obj-to-list, bytecomp.el
Aidan Kehoe <kehoea@parhasard.net>
parents:
5089
diff
changeset
|
2536 (code (byte-compile-byte-code-maker new-one)) |
8c3671b62dad
Remove #'byte-compile-compiled-obj-to-list, bytecomp.el
Aidan Kehoe <kehoea@parhasard.net>
parents:
5089
diff
changeset
|
2537 (docform-info |
8c3671b62dad
Remove #'byte-compile-compiled-obj-to-list, bytecomp.el
Aidan Kehoe <kehoea@parhasard.net>
parents:
5089
diff
changeset
|
2538 (cond ((atom code) ; compiled-function-p |
5391
f9dc75bdbdc4
Implement #'load-time-value less hackishly, by modifying the byte compiler.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5377
diff
changeset
|
2539 (if macrop '(" '(macro . #[" 4 "]))") '(" #[" 4 "])"))) |
5106
8c3671b62dad
Remove #'byte-compile-compiled-obj-to-list, bytecomp.el
Aidan Kehoe <kehoea@parhasard.net>
parents:
5089
diff
changeset
|
2540 ((eq (car code) 'quote) |
8c3671b62dad
Remove #'byte-compile-compiled-obj-to-list, bytecomp.el
Aidan Kehoe <kehoea@parhasard.net>
parents:
5089
diff
changeset
|
2541 (setq code new-one) |
5391
f9dc75bdbdc4
Implement #'load-time-value less hackishly, by modifying the byte compiler.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5377
diff
changeset
|
2542 (if macrop '(" '(macro " 2 "))") '(" '(" 2 "))"))) |
f9dc75bdbdc4
Implement #'load-time-value less hackishly, by modifying the byte compiler.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5377
diff
changeset
|
2543 ((if macrop '(" (cons 'macro (" 5 ")))") '(" (" 5 "))")))))) |
428 | 2544 (if this-one |
2545 (setcdr this-one new-one) | |
2546 (set this-kind | |
2547 (cons (cons name new-one) (symbol-value this-kind)))) | |
2548 (if (and (stringp (nth 3 form)) | |
2549 (eq 'quote (car-safe code)) | |
2550 (eq 'lambda (car-safe (nth 1 code)))) | |
2551 (cons (car form) | |
5106
8c3671b62dad
Remove #'byte-compile-compiled-obj-to-list, bytecomp.el
Aidan Kehoe <kehoea@parhasard.net>
parents:
5089
diff
changeset
|
2552 (cons name (cdr (nth 1 code)))) |
428 | 2553 (byte-compile-flush-pending) |
2554 (if (not (stringp (nth 3 form))) | |
5106
8c3671b62dad
Remove #'byte-compile-compiled-obj-to-list, bytecomp.el
Aidan Kehoe <kehoea@parhasard.net>
parents:
5089
diff
changeset
|
2555 ;; No doc string. Provide -1 as the "doc string index" so that |
8c3671b62dad
Remove #'byte-compile-compiled-obj-to-list, bytecomp.el
Aidan Kehoe <kehoea@parhasard.net>
parents:
5089
diff
changeset
|
2556 ;; no element will be treated as a doc string by |
8c3671b62dad
Remove #'byte-compile-compiled-obj-to-list, bytecomp.el
Aidan Kehoe <kehoea@parhasard.net>
parents:
5089
diff
changeset
|
2557 ;; byte-compile-output-doc-form. |
8c3671b62dad
Remove #'byte-compile-compiled-obj-to-list, bytecomp.el
Aidan Kehoe <kehoea@parhasard.net>
parents:
5089
diff
changeset
|
2558 (setq docform-info (list (first docform-info) -1 |
8c3671b62dad
Remove #'byte-compile-compiled-obj-to-list, bytecomp.el
Aidan Kehoe <kehoea@parhasard.net>
parents:
5089
diff
changeset
|
2559 (third docform-info)))) |
8c3671b62dad
Remove #'byte-compile-compiled-obj-to-list, bytecomp.el
Aidan Kehoe <kehoea@parhasard.net>
parents:
5089
diff
changeset
|
2560 (byte-compile-output-docform |
8c3671b62dad
Remove #'byte-compile-compiled-obj-to-list, bytecomp.el
Aidan Kehoe <kehoea@parhasard.net>
parents:
5089
diff
changeset
|
2561 "\n(defalias '" |
8c3671b62dad
Remove #'byte-compile-compiled-obj-to-list, bytecomp.el
Aidan Kehoe <kehoea@parhasard.net>
parents:
5089
diff
changeset
|
2562 name |
8c3671b62dad
Remove #'byte-compile-compiled-obj-to-list, bytecomp.el
Aidan Kehoe <kehoea@parhasard.net>
parents:
5089
diff
changeset
|
2563 docform-info |
8c3671b62dad
Remove #'byte-compile-compiled-obj-to-list, bytecomp.el
Aidan Kehoe <kehoea@parhasard.net>
parents:
5089
diff
changeset
|
2564 ;; The result of byte-compile-byte-code-maker is either a |
8c3671b62dad
Remove #'byte-compile-compiled-obj-to-list, bytecomp.el
Aidan Kehoe <kehoea@parhasard.net>
parents:
5089
diff
changeset
|
2565 ;; compiled-function object, or a list of some kind. If it's not a |
8c3671b62dad
Remove #'byte-compile-compiled-obj-to-list, bytecomp.el
Aidan Kehoe <kehoea@parhasard.net>
parents:
5089
diff
changeset
|
2566 ;; cons, we must coerce it into a list of the elements to be |
8c3671b62dad
Remove #'byte-compile-compiled-obj-to-list, bytecomp.el
Aidan Kehoe <kehoea@parhasard.net>
parents:
5089
diff
changeset
|
2567 ;; printed to the file. |
8c3671b62dad
Remove #'byte-compile-compiled-obj-to-list, bytecomp.el
Aidan Kehoe <kehoea@parhasard.net>
parents:
5089
diff
changeset
|
2568 (if (consp code) |
8c3671b62dad
Remove #'byte-compile-compiled-obj-to-list, bytecomp.el
Aidan Kehoe <kehoea@parhasard.net>
parents:
5089
diff
changeset
|
2569 code |
5391
f9dc75bdbdc4
Implement #'load-time-value less hackishly, by modifying the byte compiler.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5377
diff
changeset
|
2570 (list* (compiled-function-arglist code) |
f9dc75bdbdc4
Implement #'load-time-value less hackishly, by modifying the byte compiler.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5377
diff
changeset
|
2571 (compiled-function-instructions code) |
f9dc75bdbdc4
Implement #'load-time-value less hackishly, by modifying the byte compiler.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5377
diff
changeset
|
2572 (compiled-function-constants code) |
f9dc75bdbdc4
Implement #'load-time-value less hackishly, by modifying the byte compiler.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5377
diff
changeset
|
2573 (compiled-function-stack-depth code) |
f9dc75bdbdc4
Implement #'load-time-value less hackishly, by modifying the byte compiler.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5377
diff
changeset
|
2574 (compiled-function-doc-string code) |
5106
8c3671b62dad
Remove #'byte-compile-compiled-obj-to-list, bytecomp.el
Aidan Kehoe <kehoea@parhasard.net>
parents:
5089
diff
changeset
|
2575 (if (commandp code) |
8c3671b62dad
Remove #'byte-compile-compiled-obj-to-list, bytecomp.el
Aidan Kehoe <kehoea@parhasard.net>
parents:
5089
diff
changeset
|
2576 (list (nth 1 (compiled-function-interactive code)))))) |
8c3671b62dad
Remove #'byte-compile-compiled-obj-to-list, bytecomp.el
Aidan Kehoe <kehoea@parhasard.net>
parents:
5089
diff
changeset
|
2577 (and (atom code) byte-compile-dynamic |
8c3671b62dad
Remove #'byte-compile-compiled-obj-to-list, bytecomp.el
Aidan Kehoe <kehoea@parhasard.net>
parents:
5089
diff
changeset
|
2578 1) |
428 | 2579 nil)) |
5106
8c3671b62dad
Remove #'byte-compile-compiled-obj-to-list, bytecomp.el
Aidan Kehoe <kehoea@parhasard.net>
parents:
5089
diff
changeset
|
2580 nil))) |
428 | 2581 |
2582 ;; Print Lisp object EXP in the output file, inside a comment, | |
2583 ;; and return the file position it will have. | |
2584 ;; If QUOTED is non-nil, print with quoting; otherwise, print without quoting. | |
2585 (defun byte-compile-output-as-comment (exp quoted) | |
2586 (let ((position (point))) | |
2587 (set-buffer | |
2588 (prog1 (current-buffer) | |
2589 (set-buffer byte-compile-outbuffer) | |
2590 | |
2591 ;; Insert EXP, and make it a comment with #@LENGTH. | |
2592 (insert " ") | |
2593 (if quoted | |
2594 (prin1 exp byte-compile-outbuffer) | |
2595 (princ exp byte-compile-outbuffer)) | |
2596 (goto-char position) | |
2597 ;; Quote certain special characters as needed. | |
2598 ;; get_doc_string in doc.c does the unquoting. | |
2599 (while (search-forward "\^A" nil t) | |
2600 (replace-match "\^A\^A" t t)) | |
2601 (goto-char position) | |
2602 (while (search-forward "\000" nil t) | |
2603 (replace-match "\^A0" t t)) | |
2604 (goto-char position) | |
2605 (while (search-forward "\037" nil t) | |
2606 (replace-match "\^A_" t t)) | |
2607 (goto-char (point-max)) | |
2608 (insert "\037") | |
2609 (goto-char position) | |
2610 (insert "#@" (format "%d" (- (point-max) position))) | |
2611 | |
2612 ;; Save the file position of the object. | |
2613 ;; Note we should add 1 to skip the space | |
2614 ;; that we inserted before the actual doc string, | |
2615 ;; and subtract 1 to convert from an 1-origin Emacs position | |
2616 ;; to a file position; they cancel. | |
2617 (setq position (point)) | |
2618 (goto-char (point-max)))) | |
2619 position)) | |
2620 | |
2621 | |
2622 | |
2623 ;; The `domain' declaration. This is legal only at top-level in a file, and | |
2624 ;; should generally be the first form in the file. It is not legal inside | |
2625 ;; function bodies. | |
2626 | |
2627 (put 'domain 'byte-hunk-handler 'byte-compile-file-form-domain) | |
2628 (defun byte-compile-file-form-domain (form) | |
2629 (if (not (null (cdr (cdr form)))) | |
2630 (byte-compile-warn "domain used with too many arguments: %s" form)) | |
2631 (let ((domain (nth 1 form))) | |
2632 (or (null domain) | |
2633 (stringp domain) | |
2634 (progn | |
2635 (byte-compile-warn | |
2636 "argument to `domain' declaration must be a literal string: %s" | |
2637 form) | |
2638 (setq domain nil))) | |
2639 (setq byte-compile-file-domain domain)) | |
2640 (byte-compile-keep-pending form 'byte-compile-normal-call)) | |
2641 | |
2642 (defun byte-compile-domain (form) | |
2643 (byte-compile-warn "The `domain' declaration is legal only at top-level: %s" | |
2644 (let ((print-escape-newlines t) | |
2645 (print-level 4) | |
2646 (print-length 4)) | |
2647 (prin1-to-string form))) | |
2648 (byte-compile-normal-call | |
2649 (list 'signal ''error | |
2650 (list 'quote (list "`domain' used inside a function" form))))) | |
2651 | |
2652 ;; This is part of bytecomp.el in 19.35: | |
2653 (put 'custom-declare-variable 'byte-hunk-handler | |
2654 'byte-compile-file-form-custom-declare-variable) | |
2655 (defun byte-compile-file-form-custom-declare-variable (form) | |
4289 | 2656 ;; XEmacs change; our implementation byte compiles and gives warnings |
2657 ;; about the default value code, which GNU's doesn't. | |
2658 (let* ((quoted-default (car-safe (cdr-safe (cdr-safe form)))) | |
2659 (to-examine (car-safe (cdr-safe quoted-default)))) | |
2660 (if (memq 'free-vars byte-compile-warnings) | |
2661 (setq byte-compile-bound-variables | |
2662 (cons (cons (nth 1 (nth 1 form)) | |
2663 byte-compile-global-bit) | |
2664 byte-compile-bound-variables))) | |
2665 ;; Byte compile anything that smells like a lambda. I initially | |
2666 ;; considered limiting it to the :initialize, :set and :get args, but | |
2667 ;; that's not amazingly forward-compatible, and anyone expecting other | |
2668 ;; things to be stored as data, not code, is unrealistic. | |
2669 (loop | |
2670 for entry in-ref (nthcdr 4 form) | |
2671 do (cond ((and (eq 'function (car-safe entry)) | |
2672 (consp (car-safe (cdr-safe entry)))) | |
2673 (setf entry (copy-sequence entry)) | |
2674 (setcar (cdr entry) (byte-compile-lambda (car (cdr entry))))) | |
2675 ((and (eq 'lambda (car-safe entry))) | |
2676 (setf entry (byte-compile-lambda entry))))) | |
2677 ;; Byte compile the default value, as we do for defvar. | |
2678 (when (consp (cdr-safe to-examine)) | |
2679 (setq form (copy-sequence form)) | |
2680 (setcdr (third form) | |
2681 (list (byte-compile-top-level to-examine nil 'file))) | |
2682 ;; And save a value to be examined in the custom UI, if that differs | |
2683 ;; from the init value. | |
2684 (unless (equal to-examine (car-safe (cdr (third form)))) | |
4304 | 2685 (setcdr (third form) |
2686 (list (byte-compile-top-level | |
2687 ;; This is ugly. custom-declare-variable errors if | |
2688 ;; it's passed a keyword it doesn't know about, and | |
2689 ;; so to make this code run on 21.4, we add code to | |
2690 ;; modify the standard-value property to the | |
2691 ;; byte-compiled value for DEFAULT. | |
2692 `(prog2 (put ,(second form) 'standard-value | |
2693 '(,to-examine)) | |
2694 ,to-examine) | |
2695 nil 'file))))) | |
4289 | 2696 form)) |
428 | 2697 |
2698 ;;;###autoload | |
2699 (defun byte-compile (form) | |
2700 "If FORM is a symbol, byte-compile its function definition. | |
2701 If FORM is a lambda or a macro, byte-compile it as a function." | |
2702 (displaying-byte-compile-warnings | |
2703 (byte-compile-close-variables | |
2704 (let* ((fun (if (symbolp form) | |
2705 (and (fboundp form) (symbol-function form)) | |
2706 form)) | |
2707 (macro (eq (car-safe fun) 'macro))) | |
2708 (if macro | |
2709 (setq fun (cdr fun))) | |
2710 (cond ((eq (car-safe fun) 'lambda) | |
2711 (setq fun (if macro | |
2712 (cons 'macro (byte-compile-lambda fun)) | |
2713 (byte-compile-lambda fun))) | |
2714 (if (symbolp form) | |
2715 (defalias form fun) | |
2716 fun))))))) | |
2717 | |
2718 ;;;###autoload | |
2719 (defun byte-compile-sexp (sexp &optional msg) | |
2720 "Compile and return SEXP." | |
2721 (displaying-byte-compile-warnings | |
2722 (byte-compile-close-variables | |
2723 (prog1 | |
2724 (byte-compile-top-level sexp) | |
2725 (byte-compile-warn-about-unresolved-functions msg))))) | |
2726 | |
2727 ;; Given a function made by byte-compile-lambda, make a form which produces it. | |
2728 (defun byte-compile-byte-code-maker (fun) | |
2729 (cond | |
2730 ;; ## atom is faster than compiled-func-p. | |
2731 ((atom fun) ; compiled-function-p | |
2732 fun) | |
2733 ;; b-c-lambda didn't produce a compiled-function, so it must be a trivial | |
2734 ;; function. | |
2735 ((let (tmp) | |
2736 (if (and (setq tmp (assq 'byte-code (cdr-safe (cdr fun)))) | |
2737 (null (cdr (memq tmp fun)))) | |
2738 ;; Generate a make-byte-code call. | |
2739 (let* ((interactive (assq 'interactive (cdr (cdr fun))))) | |
2740 (nconc (list 'make-byte-code | |
2741 (list 'quote (nth 1 fun)) ;arglist | |
2742 (nth 1 tmp) ;instructions | |
2743 (nth 2 tmp) ;constants | |
2744 (nth 3 tmp)) ;stack-depth | |
2745 (cond ((stringp (nth 2 fun)) | |
2746 (list (nth 2 fun))) ;docstring | |
2747 (interactive | |
2748 (list nil))) | |
2749 (cond (interactive | |
2750 (list (if (or (null (nth 1 interactive)) | |
2751 (stringp (nth 1 interactive))) | |
2752 (nth 1 interactive) | |
2753 ;; Interactive spec is a list or a variable | |
2754 ;; (if it is correct). | |
2755 (list 'quote (nth 1 interactive)))))))) | |
2756 ;; a non-compiled function (probably trivial) | |
2757 (list 'quote fun)))))) | |
2758 | |
2759 ;; Byte-compile a lambda-expression and return a valid function. | |
2760 ;; The value is usually a compiled function but may be the original | |
2761 ;; lambda-expression. | |
5593
4218b56833b3
Give the label name when warning or erroring, bytecomp.el
Aidan Kehoe <kehoea@parhasard.net>
parents:
5579
diff
changeset
|
2762 (defun byte-compile-lambda (fun &optional name) |
428 | 2763 (or (eq 'lambda (car-safe fun)) |
2764 (error "not a lambda -- %s" (prin1-to-string fun))) | |
5593
4218b56833b3
Give the label name when warning or erroring, bytecomp.el
Aidan Kehoe <kehoea@parhasard.net>
parents:
5579
diff
changeset
|
2765 (let* ((byte-compile-current-form (or name byte-compile-current-form)) |
4218b56833b3
Give the label name when warning or erroring, bytecomp.el
Aidan Kehoe <kehoea@parhasard.net>
parents:
5579
diff
changeset
|
2766 (arglist (nth 1 fun)) |
428 | 2767 (byte-compile-bound-variables |
2768 (let ((new-bindings | |
2769 (mapcar #'(lambda (x) (cons x byte-compile-arglist-bit)) | |
2770 (and (memq 'free-vars byte-compile-warnings) | |
2771 (delq '&rest (delq '&optional | |
2772 (copy-sequence arglist))))))) | |
2773 (nconc new-bindings | |
2774 (cons 'new-scope byte-compile-bound-variables)))) | |
2775 (body (cdr (cdr fun))) | |
2776 (doc (if (stringp (car body)) | |
2777 (prog1 (car body) | |
1548 | 2778 ;; Discard the doc string |
2779 ;; only if it is not the only element of the body. | |
2780 (if (cdr body) | |
2781 (setq body (cdr body)))))) | |
4639
7757334005ae
bytecomp.el: always check code in (interactive SEXP) for sanity
Aidan Kehoe <kehoea@parhasard.net>
parents:
4623
diff
changeset
|
2782 (int (assq 'interactive body)) compiled-int) |
428 | 2783 (dolist (arg arglist) |
2784 (cond ((not (symbolp arg)) | |
2785 (byte-compile-warn "non-symbol in arglist: %S" arg)) | |
2786 ((byte-compile-constant-symbol-p arg) | |
2787 (byte-compile-warn "constant symbol in arglist: %s" arg)) | |
2788 ((and (char= ?\& (aref (symbol-name arg) 0)) | |
2789 (not (eq arg '&optional)) | |
2790 (not (eq arg '&rest))) | |
2791 (byte-compile-warn "unrecognized `&' keyword in arglist: %s" | |
2792 arg)))) | |
2793 (cond (int | |
2794 ;; Skip (interactive) if it is in front (the most usual location). | |
2795 (if (eq int (car body)) | |
2796 (setq body (cdr body))) | |
2797 (cond ((consp (cdr int)) | |
2798 (if (cdr (cdr int)) | |
2799 (byte-compile-warn "malformed interactive spec: %s" | |
2800 (prin1-to-string int))) | |
4639
7757334005ae
bytecomp.el: always check code in (interactive SEXP) for sanity
Aidan Kehoe <kehoea@parhasard.net>
parents:
4623
diff
changeset
|
2801 ;; If the interactive spec is a call to `list', don't |
7757334005ae
bytecomp.el: always check code in (interactive SEXP) for sanity
Aidan Kehoe <kehoea@parhasard.net>
parents:
4623
diff
changeset
|
2802 ;; store the compiled form, because `call-interactively' |
7757334005ae
bytecomp.el: always check code in (interactive SEXP) for sanity
Aidan Kehoe <kehoea@parhasard.net>
parents:
4623
diff
changeset
|
2803 ;; looks at the args of `list' and treats certain |
7757334005ae
bytecomp.el: always check code in (interactive SEXP) for sanity
Aidan Kehoe <kehoea@parhasard.net>
parents:
4623
diff
changeset
|
2804 ;; functions specially. Compiling it is nonetheless |
7757334005ae
bytecomp.el: always check code in (interactive SEXP) for sanity
Aidan Kehoe <kehoea@parhasard.net>
parents:
4623
diff
changeset
|
2805 ;; useful for warnings. |
428 | 2806 (let ((form (nth 1 int))) |
2807 (while (or (eq (car-safe form) 'let) | |
2808 (eq (car-safe form) 'let*) | |
2809 (eq (car-safe form) 'save-excursion)) | |
2810 (while (consp (cdr form)) | |
2811 (setq form (cdr form))) | |
2812 (setq form (car form))) | |
4639
7757334005ae
bytecomp.el: always check code in (interactive SEXP) for sanity
Aidan Kehoe <kehoea@parhasard.net>
parents:
4623
diff
changeset
|
2813 (setq compiled-int |
7757334005ae
bytecomp.el: always check code in (interactive SEXP) for sanity
Aidan Kehoe <kehoea@parhasard.net>
parents:
4623
diff
changeset
|
2814 (byte-compile-top-level (nth 1 int))) |
428 | 2815 (or (eq (car-safe form) 'list) |
4639
7757334005ae
bytecomp.el: always check code in (interactive SEXP) for sanity
Aidan Kehoe <kehoea@parhasard.net>
parents:
4623
diff
changeset
|
2816 (setq int (list 'interactive compiled-int))))) |
428 | 2817 ((cdr int) |
2818 (byte-compile-warn "malformed interactive spec: %s" | |
2819 (prin1-to-string int)))))) | |
2820 (let ((compiled (byte-compile-top-level (cons 'progn body) nil 'lambda))) | |
2821 (if (memq 'unused-vars byte-compile-warnings) | |
2822 ;; done compiling in this scope, warn now. | |
2823 (byte-compile-warn-about-unused-variables)) | |
2824 (if (eq 'byte-code (car-safe compiled)) | |
2825 (apply 'make-byte-code | |
2826 (append (list arglist) | |
2827 ;; byte-string, constants-vector, stack depth | |
2828 (cdr compiled) | |
2829 ;; optionally, the doc string. | |
2830 (if (or doc int) | |
2831 (list doc)) | |
2832 ;; optionally, the interactive spec. | |
2833 (if int | |
2834 (list (nth 1 int))))) | |
2835 (setq compiled | |
2836 (nconc (if int (list int)) | |
2837 (cond ((eq (car-safe compiled) 'progn) (cdr compiled)) | |
2838 (compiled (list compiled))))) | |
2839 (nconc (list 'lambda arglist) | |
2840 (if (or doc (stringp (car compiled))) | |
2841 (cons doc (cond (compiled) | |
2842 (body (list nil)))) | |
2843 compiled)))))) | |
2844 | |
2845 (defun byte-compile-constants-vector () | |
2846 ;; Builds the constants-vector from the current variables and constants. | |
2847 ;; This modifies the constants from (const . nil) to (const . offset). | |
2848 ;; To keep the byte-codes to look up the vector as short as possible: | |
2849 ;; First 6 elements are vars, as there are one-byte varref codes for those. | |
2850 ;; Next up to byte-constant-limit are constants, still with one-byte codes. | |
2851 ;; Next variables again, to get 2-byte codes for variable lookup. | |
2852 ;; The rest of the constants and variables need 3-byte byte-codes. | |
2853 (let* ((i -1) | |
2854 (rest (nreverse byte-compile-variables)) ; nreverse because the first | |
2855 (other (nreverse byte-compile-constants)) ; vars often are used most. | |
2856 ret tmp | |
2857 (limits '(5 ; Use the 1-byte varref codes, | |
2858 63 ; 1-constlim ; 1-byte byte-constant codes, | |
2859 255 ; 2-byte varref codes, | |
2860 65535)) ; 3-byte codes for the rest. | |
2861 limit) | |
2862 (while (or rest other) | |
2863 (setq limit (car limits)) | |
2864 (while (and rest (not (eq i limit))) | |
2865 (if (setq tmp (assq (car (car rest)) ret)) | |
2866 (setcdr (car rest) (cdr tmp)) | |
2867 (setcdr (car rest) (setq i (1+ i))) | |
2868 (setq ret (cons (car rest) ret))) | |
2869 (setq rest (cdr rest))) | |
2870 (setq limits (cdr limits) | |
2871 rest (prog1 other | |
2872 (setq other rest)))) | |
2873 (apply 'vector (nreverse (mapcar 'car ret))))) | |
2874 | |
2875 ;; Given an expression FORM, compile it and return an equivalent byte-code | |
2876 ;; expression (a call to the function byte-code). | |
2877 (defun byte-compile-top-level (form &optional for-effect output-type) | |
2878 ;; OUTPUT-TYPE advises about how form is expected to be used: | |
2879 ;; 'eval or nil -> a single form, | |
2880 ;; 'progn or t -> a list of forms, | |
2881 ;; 'lambda -> body of a lambda, | |
2882 ;; 'file -> used at file-level. | |
2883 (let ((byte-compile-constants nil) | |
2884 (byte-compile-variables nil) | |
2885 (byte-compile-tag-number 0) | |
2886 (byte-compile-depth 0) | |
2887 (byte-compile-maxdepth 0) | |
2888 (byte-compile-output nil)) | |
2889 (if (memq byte-optimize '(t source)) | |
2890 (setq form (byte-optimize-form form for-effect))) | |
2891 (while (and (eq (car-safe form) 'progn) (null (cdr (cdr form)))) | |
2892 (setq form (nth 1 form))) | |
2893 (if (and (eq 'byte-code (car-safe form)) | |
2894 (not (memq byte-optimize '(t byte))) | |
2895 (stringp (nth 1 form)) | |
2896 (vectorp (nth 2 form)) | |
2897 (natnump (nth 3 form))) | |
2898 form | |
2899 (byte-compile-form form for-effect) | |
2900 (byte-compile-out-toplevel for-effect output-type)))) | |
2901 | |
2902 (defun byte-compile-out-toplevel (&optional for-effect output-type) | |
2903 (if for-effect | |
2904 ;; The stack is empty. Push a value to be returned from (byte-code ..). | |
2905 (if (eq (car (car byte-compile-output)) 'byte-discard) | |
2906 (setq byte-compile-output (cdr byte-compile-output)) | |
2907 (byte-compile-push-constant | |
2908 ;; Push any constant - preferably one which already is used, and | |
2909 ;; a number or symbol - ie not some big sequence. The return value | |
2910 ;; isn't returned, but it would be a shame if some textually large | |
2911 ;; constant was not optimized away because we chose to return it. | |
2912 (and (not (assq nil byte-compile-constants)) ; Nil is often there. | |
2913 (let ((tmp (reverse byte-compile-constants))) | |
2914 (while (and tmp (not (or (symbolp (car (car tmp))) | |
2915 (numberp (car (car tmp)))))) | |
2916 (setq tmp (cdr tmp))) | |
2917 (car (car tmp))))))) | |
2918 (byte-compile-out 'byte-return 0) | |
2919 (setq byte-compile-output (nreverse byte-compile-output)) | |
2920 (if (memq byte-optimize '(t byte)) | |
2921 (setq byte-compile-output | |
2922 (byte-optimize-lapcode byte-compile-output for-effect))) | |
2923 | |
2924 ;; Decompile trivial functions: | |
2925 ;; only constants and variables, or a single funcall except in lambdas. | |
2926 ;; Except for Lisp_Compiled objects, forms like (foo "hi") | |
2927 ;; are still quicker than (byte-code "..." [foo "hi"] 2). | |
2928 ;; Note that even (quote foo) must be parsed just as any subr by the | |
2929 ;; interpreter, so quote should be compiled into byte-code in some contexts. | |
2930 ;; What to leave uncompiled: | |
2931 ;; lambda -> never. we used to leave it uncompiled if the body was | |
2932 ;; a single atom, but that causes confusion if the docstring | |
2933 ;; uses the (file . pos) syntax. Besides, now that we have | |
2934 ;; the Lisp_Compiled type, the compiled form is faster. | |
2935 ;; eval -> atom, quote or (function atom atom atom) | |
2936 ;; progn -> as <<same-as-eval>> or (progn <<same-as-eval>> atom) | |
2937 ;; file -> as progn, but takes both quotes and atoms, and longer forms. | |
2938 (let (rest | |
2939 (maycall (not (eq output-type 'lambda))) ; t if we may make a funcall. | |
2940 tmp body) | |
2941 (cond | |
2942 ;; #### This should be split out into byte-compile-nontrivial-function-p. | |
2943 ((or (eq output-type 'lambda) | |
2944 (nthcdr (if (eq output-type 'file) 50 8) byte-compile-output) | |
2945 (assq 'TAG byte-compile-output) ; Not necessary, but speeds up a bit. | |
2946 (not (setq tmp (assq 'byte-return byte-compile-output))) | |
2947 (progn | |
2948 (setq rest (nreverse | |
2949 (cdr (memq tmp (reverse byte-compile-output))))) | |
2950 (while (cond | |
2951 ((memq (car (car rest)) '(byte-varref byte-constant)) | |
2952 (setq tmp (car (cdr (car rest)))) | |
2953 (if (if (eq (car (car rest)) 'byte-constant) | |
2954 (or (consp tmp) | |
2955 (and (symbolp tmp) | |
2956 (not (byte-compile-constant-symbol-p tmp))))) | |
2957 (if maycall | |
2958 (setq body (cons (list 'quote tmp) body))) | |
2959 (setq body (cons tmp body)))) | |
2960 ((and maycall | |
2961 ;; Allow a funcall if at most one atom follows it. | |
2962 (null (nthcdr 3 rest)) | |
5503
7b5946dbfb96
Drop support for generating code appropriate for Emacs 19, bytecomp.el
Aidan Kehoe <kehoea@parhasard.net>
parents:
5475
diff
changeset
|
2963 (setq tmp (get (car (car rest)) 'byte-opcode-invert)) |
428 | 2964 (or (null (cdr rest)) |
2965 (and (memq output-type '(file progn t)) | |
2966 (cdr (cdr rest)) | |
2967 (eq (car (nth 1 rest)) 'byte-discard) | |
2968 (progn (setq rest (cdr rest)) t)))) | |
2969 (setq maycall nil) ; Only allow one real function call. | |
2970 (setq body (nreverse body)) | |
2971 (setq body (list | |
2972 (if (and (eq tmp 'funcall) | |
2973 (eq (car-safe (car body)) 'quote)) | |
2974 (cons (nth 1 (car body)) (cdr body)) | |
2975 (cons tmp body)))) | |
2976 (or (eq output-type 'file) | |
2977 (not (delq nil (mapcar 'consp (cdr (car body)))))))) | |
2978 (setq rest (cdr rest))) | |
2979 rest)) | |
2980 (let ((byte-compile-vector (byte-compile-constants-vector))) | |
2981 (list 'byte-code (byte-compile-lapcode byte-compile-output) | |
2982 byte-compile-vector byte-compile-maxdepth))) | |
2983 ;; it's a trivial function | |
2984 ((cdr body) (cons 'progn (nreverse body))) | |
2985 ((car body))))) | |
2986 | |
2987 ;; Given BODY, compile it and return a new body. | |
2988 (defun byte-compile-top-level-body (body &optional for-effect) | |
2989 (setq body (byte-compile-top-level (cons 'progn body) for-effect t)) | |
2990 (cond ((eq (car-safe body) 'progn) | |
2991 (cdr body)) | |
2992 (body | |
2993 (list body)))) | |
2994 | |
2995 ;; This is the recursive entry point for compiling each subform of an | |
2996 ;; expression. | |
2997 ;; If for-effect is non-nil, byte-compile-form will output a byte-discard | |
2998 ;; before terminating (ie. no value will be left on the stack). | |
2999 ;; A byte-compile handler may, when for-effect is non-nil, choose output code | |
3000 ;; which does not leave a value on the stack, and then set for-effect to nil | |
3001 ;; (to prevent byte-compile-form from outputting the byte-discard). | |
3002 ;; If a handler wants to call another handler, it should do so via | |
3003 ;; byte-compile-form, or take extreme care to handle for-effect correctly. | |
3004 ;; (Use byte-compile-form-do-effect to reset the for-effect flag too.) | |
3005 ;; | |
3006 (defun byte-compile-form (form &optional for-effect) | |
3007 (setq form (macroexpand form byte-compile-macro-environment)) | |
3008 (cond ((not (consp form)) | |
3009 (cond ((or (not (symbolp form)) | |
3010 (byte-compile-constant-symbol-p form)) | |
3011 (byte-compile-constant form)) | |
3012 ((and for-effect byte-compile-delete-errors) | |
3013 (setq for-effect nil)) | |
3014 (t (byte-compile-variable-ref 'byte-varref form)))) | |
3015 ((symbolp (car form)) | |
3016 (let* ((fn (car form)) | |
3017 (handler (get fn 'byte-compile))) | |
3018 (if (memq fn '(t nil)) | |
3019 (byte-compile-warn "%s called as a function" fn)) | |
5503
7b5946dbfb96
Drop support for generating code appropriate for Emacs 19, bytecomp.el
Aidan Kehoe <kehoea@parhasard.net>
parents:
5475
diff
changeset
|
3020 (if handler |
428 | 3021 (funcall handler form) |
3022 (if (memq 'callargs byte-compile-warnings) | |
3023 (byte-compile-callargs-warn form)) | |
3024 (byte-compile-normal-call form)))) | |
3025 ((and (or (compiled-function-p (car form)) | |
3026 (eq (car-safe (car form)) 'lambda)) | |
3027 ;; if the form comes out the same way it went in, that's | |
3028 ;; because it was malformed, and we couldn't unfold it. | |
3029 (not (eq form (setq form (byte-compile-unfold-lambda form))))) | |
3030 (byte-compile-form form for-effect) | |
3031 (setq for-effect nil)) | |
3032 ((byte-compile-normal-call form))) | |
3033 (when for-effect | |
3034 (byte-compile-discard))) | |
3035 | |
5294
bbff29a01820
Add compiler macros and compilation sanity-checks for functions with keywords.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5282
diff
changeset
|
3036 ;; Generate the list of functions with keyword arguments like so: |
bbff29a01820
Add compiler macros and compilation sanity-checks for functions with keywords.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5282
diff
changeset
|
3037 ;; |
bbff29a01820
Add compiler macros and compilation sanity-checks for functions with keywords.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5282
diff
changeset
|
3038 ;; (delete-duplicates |
bbff29a01820
Add compiler macros and compilation sanity-checks for functions with keywords.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5282
diff
changeset
|
3039 ;; (sort* |
bbff29a01820
Add compiler macros and compilation sanity-checks for functions with keywords.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5282
diff
changeset
|
3040 ;; (loop |
bbff29a01820
Add compiler macros and compilation sanity-checks for functions with keywords.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5282
diff
changeset
|
3041 ;; for symbol being each symbol in obarray |
bbff29a01820
Add compiler macros and compilation sanity-checks for functions with keywords.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5282
diff
changeset
|
3042 ;; with arglist = nil |
bbff29a01820
Add compiler macros and compilation sanity-checks for functions with keywords.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5282
diff
changeset
|
3043 ;; if (and (fboundp symbol) |
bbff29a01820
Add compiler macros and compilation sanity-checks for functions with keywords.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5282
diff
changeset
|
3044 ;; (ignore-errors (setq symbol (indirect-function symbol))) |
bbff29a01820
Add compiler macros and compilation sanity-checks for functions with keywords.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5282
diff
changeset
|
3045 ;; (cond |
bbff29a01820
Add compiler macros and compilation sanity-checks for functions with keywords.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5282
diff
changeset
|
3046 ;; ((and (subrp symbol) (setq symbol (intern (subr-name symbol))))) |
bbff29a01820
Add compiler macros and compilation sanity-checks for functions with keywords.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5282
diff
changeset
|
3047 ;; ((and (compiled-function-p symbol) |
bbff29a01820
Add compiler macros and compilation sanity-checks for functions with keywords.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5282
diff
changeset
|
3048 ;; (setq symbol (compiled-function-annotation symbol))))) |
bbff29a01820
Add compiler macros and compilation sanity-checks for functions with keywords.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5282
diff
changeset
|
3049 ;; (setq arglist (function-arglist symbol)) |
bbff29a01820
Add compiler macros and compilation sanity-checks for functions with keywords.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5282
diff
changeset
|
3050 ;; (setq arglist (ignore-errors (read-from-string arglist))) |
bbff29a01820
Add compiler macros and compilation sanity-checks for functions with keywords.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5282
diff
changeset
|
3051 ;; (setq arglist (car arglist)) |
bbff29a01820
Add compiler macros and compilation sanity-checks for functions with keywords.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5282
diff
changeset
|
3052 ;; (setq arglist (position '&key arglist))) |
bbff29a01820
Add compiler macros and compilation sanity-checks for functions with keywords.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5282
diff
changeset
|
3053 ;; collect (cons symbol arglist)) |
bbff29a01820
Add compiler macros and compilation sanity-checks for functions with keywords.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5282
diff
changeset
|
3054 ;; #'string-lessp |
bbff29a01820
Add compiler macros and compilation sanity-checks for functions with keywords.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5282
diff
changeset
|
3055 ;; :key #'car) :test #'eq :key #'car) |
bbff29a01820
Add compiler macros and compilation sanity-checks for functions with keywords.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5282
diff
changeset
|
3056 ;; |
bbff29a01820
Add compiler macros and compilation sanity-checks for functions with keywords.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5282
diff
changeset
|
3057 ;; That won't include those that take advantage of cl-seq.el's |
bbff29a01820
Add compiler macros and compilation sanity-checks for functions with keywords.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5282
diff
changeset
|
3058 ;; cl-parsing-keywords macro, but the below list does. |
bbff29a01820
Add compiler macros and compilation sanity-checks for functions with keywords.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5282
diff
changeset
|
3059 |
bbff29a01820
Add compiler macros and compilation sanity-checks for functions with keywords.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5282
diff
changeset
|
3060 (map nil |
bbff29a01820
Add compiler macros and compilation sanity-checks for functions with keywords.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5282
diff
changeset
|
3061 (function* |
bbff29a01820
Add compiler macros and compilation sanity-checks for functions with keywords.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5282
diff
changeset
|
3062 (lambda ((function . nargs)) |
bbff29a01820
Add compiler macros and compilation sanity-checks for functions with keywords.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5282
diff
changeset
|
3063 ;; Document that the car of OBJECT, a symbol, describes a function |
bbff29a01820
Add compiler macros and compilation sanity-checks for functions with keywords.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5282
diff
changeset
|
3064 ;; taking keyword arguments from the argument index described by |
bbff29a01820
Add compiler macros and compilation sanity-checks for functions with keywords.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5282
diff
changeset
|
3065 ;; the cdr of OBJECT. |
bbff29a01820
Add compiler macros and compilation sanity-checks for functions with keywords.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5282
diff
changeset
|
3066 (put function 'byte-compile-keyword-start nargs))) |
bbff29a01820
Add compiler macros and compilation sanity-checks for functions with keywords.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5282
diff
changeset
|
3067 '((adjoin . 3) (assoc* . 3) (assoc-if . 3) (assoc-if-not . 3) |
bbff29a01820
Add compiler macros and compilation sanity-checks for functions with keywords.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5282
diff
changeset
|
3068 (count . 3) (count-if . 3) (count-if-not . 3) (define-behavior . 3) |
bbff29a01820
Add compiler macros and compilation sanity-checks for functions with keywords.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5282
diff
changeset
|
3069 (define-behavior-group . 2) (delete* . 3) (delete-duplicates . 2) |
bbff29a01820
Add compiler macros and compilation sanity-checks for functions with keywords.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5282
diff
changeset
|
3070 (delete-if . 3) (delete-if-not . 3) (fill . 3) (find . 3) (find-if . 3) |
bbff29a01820
Add compiler macros and compilation sanity-checks for functions with keywords.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5282
diff
changeset
|
3071 (find-if-not . 3) (internal-make-translation-table . 1) |
bbff29a01820
Add compiler macros and compilation sanity-checks for functions with keywords.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5282
diff
changeset
|
3072 (make-Print-context . 1) (make-hash-table . 1) (make-saved-window . 1) |
bbff29a01820
Add compiler macros and compilation sanity-checks for functions with keywords.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5282
diff
changeset
|
3073 (make-window-configuration . 1) (member* . 3) |
bbff29a01820
Add compiler macros and compilation sanity-checks for functions with keywords.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5282
diff
changeset
|
3074 (member-if . 3) (member-if-not . 3) (merge . 5) (nsublis . 3) |
bbff29a01820
Add compiler macros and compilation sanity-checks for functions with keywords.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5282
diff
changeset
|
3075 (nsubst . 4) (nsubst-if . 4) (nsubst-if-not . 4) (nsubstitute . 4) |
bbff29a01820
Add compiler macros and compilation sanity-checks for functions with keywords.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5282
diff
changeset
|
3076 (nsubstitute-if . 4) (nsubstitute-if-not . 4) (override-behavior . 2) |
bbff29a01820
Add compiler macros and compilation sanity-checks for functions with keywords.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5282
diff
changeset
|
3077 (position . 3) (position-if . 3) (position-if-not . 3) (rassoc* . 3) |
bbff29a01820
Add compiler macros and compilation sanity-checks for functions with keywords.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5282
diff
changeset
|
3078 (rassoc-if . 3) (rassoc-if-not . 3) (reduce . 3) (remove* . 3) |
bbff29a01820
Add compiler macros and compilation sanity-checks for functions with keywords.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5282
diff
changeset
|
3079 (remove-duplicates . 2) (remove-if . 3) (remove-if-not . 3) |
bbff29a01820
Add compiler macros and compilation sanity-checks for functions with keywords.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5282
diff
changeset
|
3080 (replace . 3) (sort* . 3) (stable-sort . 3) (sublis . 3) |
bbff29a01820
Add compiler macros and compilation sanity-checks for functions with keywords.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5282
diff
changeset
|
3081 (subsetp . 3) (subst . 4) (subst-if . 4) (subst-if-not . 4) |
bbff29a01820
Add compiler macros and compilation sanity-checks for functions with keywords.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5282
diff
changeset
|
3082 (substitute . 4) (substitute-if . 4) (substitute-if-not . 4) |
bbff29a01820
Add compiler macros and compilation sanity-checks for functions with keywords.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5282
diff
changeset
|
3083 (tree-equal . 3))) |
bbff29a01820
Add compiler macros and compilation sanity-checks for functions with keywords.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5282
diff
changeset
|
3084 |
428 | 3085 (defun byte-compile-normal-call (form) |
5358
31475de17064
#'byte-compile-normal-call; only examine properties of (car FORM) if a symbol
Aidan Kehoe <kehoea@parhasard.net>
parents:
5356
diff
changeset
|
3086 (and (symbolp (car form)) (get (car form) 'byte-compile-keyword-start) |
5294
bbff29a01820
Add compiler macros and compilation sanity-checks for functions with keywords.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5282
diff
changeset
|
3087 (let ((plist (nthcdr (get (car form) 'byte-compile-keyword-start) |
bbff29a01820
Add compiler macros and compilation sanity-checks for functions with keywords.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5282
diff
changeset
|
3088 form))) |
bbff29a01820
Add compiler macros and compilation sanity-checks for functions with keywords.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5282
diff
changeset
|
3089 (symbol-macrolet |
bbff29a01820
Add compiler macros and compilation sanity-checks for functions with keywords.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5282
diff
changeset
|
3090 ((not-present '#:not-present)) |
bbff29a01820
Add compiler macros and compilation sanity-checks for functions with keywords.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5282
diff
changeset
|
3091 (if (not (valid-plist-p plist)) |
bbff29a01820
Add compiler macros and compilation sanity-checks for functions with keywords.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5282
diff
changeset
|
3092 (byte-compile-warn |
bbff29a01820
Add compiler macros and compilation sanity-checks for functions with keywords.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5282
diff
changeset
|
3093 "#'%s: ill-formed keyword argument list: %S" (car form) plist) |
bbff29a01820
Add compiler macros and compilation sanity-checks for functions with keywords.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5282
diff
changeset
|
3094 (and |
bbff29a01820
Add compiler macros and compilation sanity-checks for functions with keywords.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5282
diff
changeset
|
3095 (memq 'callargs byte-compile-warnings) |
bbff29a01820
Add compiler macros and compilation sanity-checks for functions with keywords.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5282
diff
changeset
|
3096 (map nil |
bbff29a01820
Add compiler macros and compilation sanity-checks for functions with keywords.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5282
diff
changeset
|
3097 (function* |
bbff29a01820
Add compiler macros and compilation sanity-checks for functions with keywords.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5282
diff
changeset
|
3098 (lambda ((function . nargs)) |
5548
b90c153730c7
Do the quoted-lambda check when functions take :if, :test, :key arguments, too.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5506
diff
changeset
|
3099 (let ((value (plist-get plist function not-present))) |
b90c153730c7
Do the quoted-lambda check when functions take :if, :test, :key arguments, too.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5506
diff
changeset
|
3100 (when (and (not (eq value not-present)) |
b90c153730c7
Do the quoted-lambda check when functions take :if, :test, :key arguments, too.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5506
diff
changeset
|
3101 (byte-compile-constp value)) |
b90c153730c7
Do the quoted-lambda check when functions take :if, :test, :key arguments, too.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5506
diff
changeset
|
3102 (byte-compile-callargs-warn |
b90c153730c7
Do the quoted-lambda check when functions take :if, :test, :key arguments, too.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5506
diff
changeset
|
3103 (cons (eval value) |
b90c153730c7
Do the quoted-lambda check when functions take :if, :test, :key arguments, too.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5506
diff
changeset
|
3104 (member* |
b90c153730c7
Do the quoted-lambda check when functions take :if, :test, :key arguments, too.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5506
diff
changeset
|
3105 nargs |
b90c153730c7
Do the quoted-lambda check when functions take :if, :test, :key arguments, too.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5506
diff
changeset
|
3106 ;; Dummy arguments. There's no need for |
b90c153730c7
Do the quoted-lambda check when functions take :if, :test, :key arguments, too.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5506
diff
changeset
|
3107 ;; it to be longer than even 2, now, but |
b90c153730c7
Do the quoted-lambda check when functions take :if, :test, :key arguments, too.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5506
diff
changeset
|
3108 ;; very little harm in it. |
b90c153730c7
Do the quoted-lambda check when functions take :if, :test, :key arguments, too.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5506
diff
changeset
|
3109 '(9 8 7 6 5 4 3 2 1)))) |
b90c153730c7
Do the quoted-lambda check when functions take :if, :test, :key arguments, too.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5506
diff
changeset
|
3110 (when (and (eq (car-safe value) 'quote) |
b90c153730c7
Do the quoted-lambda check when functions take :if, :test, :key arguments, too.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5506
diff
changeset
|
3111 (eq (car-safe (nth 1 value)) 'lambda) |
b90c153730c7
Do the quoted-lambda check when functions take :if, :test, :key arguments, too.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5506
diff
changeset
|
3112 (or |
b90c153730c7
Do the quoted-lambda check when functions take :if, :test, :key arguments, too.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5506
diff
changeset
|
3113 (null (memq 'quoted-lambda |
b90c153730c7
Do the quoted-lambda check when functions take :if, :test, :key arguments, too.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5506
diff
changeset
|
3114 byte-compile-warnings)) |
b90c153730c7
Do the quoted-lambda check when functions take :if, :test, :key arguments, too.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5506
diff
changeset
|
3115 (byte-compile-warn |
b90c153730c7
Do the quoted-lambda check when functions take :if, :test, :key arguments, too.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5506
diff
changeset
|
3116 "Passing a quoted lambda to #'%s, \ |
b90c153730c7
Do the quoted-lambda check when functions take :if, :test, :key arguments, too.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5506
diff
changeset
|
3117 keyword %s, forcing function quoting" (car form) function))) |
b90c153730c7
Do the quoted-lambda check when functions take :if, :test, :key arguments, too.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5506
diff
changeset
|
3118 (setcar value 'function)))))) |
b90c153730c7
Do the quoted-lambda check when functions take :if, :test, :key arguments, too.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5506
diff
changeset
|
3119 '((:key . 1) (:test . 2) (:test-not . 2) (:if . 1) |
b90c153730c7
Do the quoted-lambda check when functions take :if, :test, :key arguments, too.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5506
diff
changeset
|
3120 (:if-not . 1)))))))) |
428 | 3121 (if byte-compile-generate-call-tree |
3122 (byte-compile-annotate-call-tree form)) | |
3123 (byte-compile-push-constant (car form)) | |
4783
e29fcfd8df5f
Eliminate most core code byte-compile warnings.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4775
diff
changeset
|
3124 (mapc 'byte-compile-form (cdr form)) ; wasteful, but faster. |
428 | 3125 (byte-compile-out 'byte-call (length (cdr form)))) |
3126 | |
3127 ;; kludge added to XEmacs to work around the bogosities of a nonlexical lisp. | |
3128 (or (fboundp 'globally-boundp) (fset 'globally-boundp 'boundp)) | |
3129 | |
3130 (defun byte-compile-variable-ref (base-op var &optional varbind-flags) | |
3131 (if (or (not (symbolp var)) (byte-compile-constant-symbol-p var)) | |
3132 (byte-compile-warn | |
3133 (case base-op | |
3134 (byte-varref "Variable reference to %s %s") | |
3135 (byte-varset "Attempt to set %s %s") | |
3136 (byte-varbind "Attempt to let-bind %s %s")) | |
3137 (if (symbolp var) "constant symbol" "non-symbol") | |
3138 var) | |
3139 (if (and (get var 'byte-obsolete-variable) | |
3140 (memq 'obsolete byte-compile-warnings)) | |
3141 (let ((ob (get var 'byte-obsolete-variable))) | |
3142 (byte-compile-warn "%s is an obsolete variable; %s" var | |
3143 (if (stringp ob) | |
3144 ob | |
3145 (format "use %s instead." ob))))) | |
3146 (if (and (get var 'byte-compatible-variable) | |
3147 (memq 'pedantic byte-compile-warnings)) | |
3148 (let ((ob (get var 'byte-compatible-variable))) | |
3149 (byte-compile-warn "%s is provided for compatibility; %s" var | |
3150 (if (stringp ob) | |
3151 ob | |
3152 (format "use %s instead." ob))))) | |
3153 (if (memq 'free-vars byte-compile-warnings) | |
3154 (if (eq base-op 'byte-varbind) | |
3155 (setq byte-compile-bound-variables | |
3156 (cons (cons var (or varbind-flags 0)) | |
3157 byte-compile-bound-variables)) | |
3158 (or (globally-boundp var) | |
3159 (let ((cell (assq var byte-compile-bound-variables))) | |
3160 (if cell (setcdr cell | |
3161 (logior (cdr cell) | |
3162 (if (eq base-op 'byte-varset) | |
3163 byte-compile-assigned-bit | |
3164 byte-compile-referenced-bit))))) | |
444 | 3165 (and (boundp 'current-load-list) |
3166 (memq var current-load-list)) | |
428 | 3167 (if (eq base-op 'byte-varset) |
3168 (or (memq var byte-compile-free-assignments) | |
3169 (progn | |
3170 (byte-compile-warn "assignment to free variable %s" | |
3171 var) | |
3172 (setq byte-compile-free-assignments | |
3173 (cons var byte-compile-free-assignments)))) | |
3174 (or (memq var byte-compile-free-references) | |
3175 (progn | |
3176 (byte-compile-warn "reference to free variable %s" var) | |
3177 (setq byte-compile-free-references | |
3178 (cons var byte-compile-free-references))))))))) | |
3179 (let ((tmp (assq var byte-compile-variables))) | |
3180 (or tmp | |
3181 (setq tmp (list var) | |
3182 byte-compile-variables (cons tmp byte-compile-variables))) | |
3183 (byte-compile-out base-op tmp))) | |
3184 | |
3185 (defmacro byte-compile-get-constant (const) | |
3186 `(or (if (stringp ,const) | |
3187 (assoc ,const byte-compile-constants) | |
3188 (assq ,const byte-compile-constants)) | |
3189 (car (setq byte-compile-constants | |
3190 (cons (list ,const) byte-compile-constants))))) | |
3191 | |
3192 ;; Use this when the value of a form is a constant. This obeys for-effect. | |
3193 (defun byte-compile-constant (const) | |
3194 (if for-effect | |
3195 (setq for-effect nil) | |
3196 (byte-compile-out 'byte-constant (byte-compile-get-constant const)))) | |
3197 | |
3198 ;; Use this for a constant that is not the value of its containing form. | |
3199 ;; This ignores for-effect. | |
3200 (defun byte-compile-push-constant (const) | |
3201 (let ((for-effect nil)) | |
3202 (inline (byte-compile-constant const)))) | |
3203 | |
3204 | |
3205 ;; Compile those primitive ordinary functions | |
3206 ;; which have special byte codes just for speed. | |
3207 | |
3208 (defmacro byte-defop-compiler (function &optional compile-handler) | |
3209 ;; add a compiler-form for FUNCTION. | |
446 | 3210 ;; If FUNCTION is a symbol, then the variable "byte-SYMBOL" must name |
3211 ;; the opcode to be used. If is a list, the first element | |
428 | 3212 ;; is the function and the second element is the bytecode-symbol. |
3213 ;; COMPILE-HANDLER is the function to use to compile this byte-op, or | |
3214 ;; may be the abbreviations 0, 1, 2, 3, 0-1, 1-2, 2-3, 0+1, 1+1, 2+1, | |
3215 ;; 0-1+1, 1-2+1, 2-3+1, 0+2, or 1+2. If it is nil, then the handler is | |
3216 ;; "byte-compile-SYMBOL." | |
3217 (let (opcode) | |
3218 (if (symbolp function) | |
3219 (setq opcode (intern (concat "byte-" (symbol-name function)))) | |
3220 (setq opcode (car (cdr function)) | |
3221 function (car function))) | |
3222 (let ((fnform | |
3223 (list 'put (list 'quote function) ''byte-compile | |
3224 (list 'quote | |
3225 (or (cdr (assq compile-handler | |
3226 '((0 . byte-compile-no-args) | |
3227 (1 . byte-compile-one-arg) | |
3228 (2 . byte-compile-two-args) | |
3229 (3 . byte-compile-three-args) | |
3230 (0-1 . byte-compile-zero-or-one-arg) | |
3231 (1-2 . byte-compile-one-or-two-args) | |
3232 (2-3 . byte-compile-two-or-three-args) | |
3233 (0+1 . byte-compile-no-args-with-one-extra) | |
3234 (1+1 . byte-compile-one-arg-with-one-extra) | |
3235 (2+1 . byte-compile-two-args-with-one-extra) | |
3236 (0-1+1 . byte-compile-zero-or-one-arg-with-one-extra) | |
3237 (1-2+1 . byte-compile-one-or-two-args-with-one-extra) | |
3238 (2-3+1 . byte-compile-two-or-three-args-with-one-extra) | |
3239 (0+2 . byte-compile-no-args-with-two-extra) | |
3240 (1+2 . byte-compile-one-arg-with-two-extra) | |
3241 | |
3242 ))) | |
3243 compile-handler | |
3244 (intern (concat "byte-compile-" | |
3245 (symbol-name function)))))))) | |
3246 (if opcode | |
3247 (list 'progn fnform | |
3248 (list 'put (list 'quote function) | |
3249 ''byte-opcode (list 'quote opcode)) | |
3250 (list 'put (list 'quote opcode) | |
3251 ''byte-opcode-invert (list 'quote function))) | |
3252 fnform)))) | |
3253 | |
3254 (defmacro byte-defop-compiler-1 (function &optional compile-handler) | |
3255 (list 'byte-defop-compiler (list function nil) compile-handler)) | |
3256 | |
3257 | |
3258 (put 'byte-call 'byte-opcode-invert 'funcall) | |
3259 (put 'byte-list1 'byte-opcode-invert 'list) | |
3260 (put 'byte-list2 'byte-opcode-invert 'list) | |
3261 (put 'byte-list3 'byte-opcode-invert 'list) | |
3262 (put 'byte-list4 'byte-opcode-invert 'list) | |
3263 (put 'byte-listN 'byte-opcode-invert 'list) | |
3264 (put 'byte-concat2 'byte-opcode-invert 'concat) | |
3265 (put 'byte-concat3 'byte-opcode-invert 'concat) | |
3266 (put 'byte-concat4 'byte-opcode-invert 'concat) | |
3267 (put 'byte-concatN 'byte-opcode-invert 'concat) | |
3268 (put 'byte-insertN 'byte-opcode-invert 'insert) | |
3269 | |
3270 ;; How old is this stuff? -slb | |
3271 ;(byte-defop-compiler (dot byte-point) 0+1) | |
3272 ;(byte-defop-compiler (dot-max byte-point-max) 0+1) | |
3273 ;(byte-defop-compiler (dot-min byte-point-min) 0+1) | |
3274 (byte-defop-compiler point 0+1) | |
5503
7b5946dbfb96
Drop support for generating code appropriate for Emacs 19, bytecomp.el
Aidan Kehoe <kehoea@parhasard.net>
parents:
5475
diff
changeset
|
3275 (byte-defop-compiler eq 2) |
428 | 3276 (byte-defop-compiler point-max 0+1) |
3277 (byte-defop-compiler point-min 0+1) | |
3278 (byte-defop-compiler following-char 0+1) | |
3279 (byte-defop-compiler preceding-char 0+1) | |
3280 (byte-defop-compiler current-column 0+1) | |
3281 ;; FSF has special function here; generalized here by the 1+2 stuff. | |
3282 (byte-defop-compiler (indent-to-column byte-indent-to) 1+2) | |
3283 (byte-defop-compiler indent-to 1+2) | |
5503
7b5946dbfb96
Drop support for generating code appropriate for Emacs 19, bytecomp.el
Aidan Kehoe <kehoea@parhasard.net>
parents:
5475
diff
changeset
|
3284 (byte-defop-compiler equal 2) |
428 | 3285 (byte-defop-compiler eolp 0+1) |
3286 (byte-defop-compiler eobp 0+1) | |
3287 (byte-defop-compiler bolp 0+1) | |
3288 (byte-defop-compiler bobp 0+1) | |
3289 (byte-defop-compiler current-buffer 0) | |
3290 ;;(byte-defop-compiler read-char 0) ;; obsolete | |
5503
7b5946dbfb96
Drop support for generating code appropriate for Emacs 19, bytecomp.el
Aidan Kehoe <kehoea@parhasard.net>
parents:
5475
diff
changeset
|
3291 (byte-defop-compiler memq 2) |
428 | 3292 (byte-defop-compiler interactive-p 0) |
3293 (byte-defop-compiler widen 0+1) | |
3294 (byte-defop-compiler end-of-line 0-1+1) | |
3295 (byte-defop-compiler forward-char 0-1+1) | |
3296 (byte-defop-compiler forward-line 0-1+1) | |
3297 (byte-defop-compiler symbolp 1) | |
3298 (byte-defop-compiler consp 1) | |
3299 (byte-defop-compiler stringp 1) | |
3300 (byte-defop-compiler listp 1) | |
3301 (byte-defop-compiler not 1) | |
3302 (byte-defop-compiler (null byte-not) 1) | |
3303 (byte-defop-compiler car 1) | |
3304 (byte-defop-compiler cdr 1) | |
3305 (byte-defop-compiler length 1) | |
5562
855b667dea13
Drop cl-macro-environment in favour of byte-compile-macro-environment.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5560
diff
changeset
|
3306 (byte-defop-compiler symbol-value 1) |
428 | 3307 (byte-defop-compiler symbol-function 1) |
3308 (byte-defop-compiler (1+ byte-add1) 1) | |
3309 (byte-defop-compiler (1- byte-sub1) 1) | |
3310 (byte-defop-compiler goto-char 1+1) | |
3311 (byte-defop-compiler char-after 0-1+1) | |
3312 (byte-defop-compiler set-buffer 1) | |
3313 ;;(byte-defop-compiler set-mark 1) ;; obsolete | |
2217 | 3314 (byte-defop-compiler forward-word 0-1+1) |
428 | 3315 (byte-defop-compiler char-syntax 1+1) |
3316 (byte-defop-compiler nreverse 1) | |
3317 (byte-defop-compiler car-safe 1) | |
3318 (byte-defop-compiler cdr-safe 1) | |
3319 (byte-defop-compiler numberp 1) | |
4885
6772ce4d982b
Fix hash tables, #'member*, #'assoc*, #'eql compiler macros if bignums
Aidan Kehoe <kehoea@parhasard.net>
parents:
4783
diff
changeset
|
3320 (byte-defop-compiler fixnump 1) |
428 | 3321 (byte-defop-compiler skip-chars-forward 1-2+1) |
3322 (byte-defop-compiler skip-chars-backward 1-2+1) | |
5301
ec05a30f7148
Fix a bytecomp.el bug compiling #'eql, which was masked by cl-macs.el
Aidan Kehoe <kehoea@parhasard.net>
parents:
5294
diff
changeset
|
3323 (byte-defop-compiler eq 2) |
5503
7b5946dbfb96
Drop support for generating code appropriate for Emacs 19, bytecomp.el
Aidan Kehoe <kehoea@parhasard.net>
parents:
5475
diff
changeset
|
3324 ; (byte-defop-compiler old-eq 2) |
7b5946dbfb96
Drop support for generating code appropriate for Emacs 19, bytecomp.el
Aidan Kehoe <kehoea@parhasard.net>
parents:
5475
diff
changeset
|
3325 ; (byte-defop-compiler old-memq 2) |
428 | 3326 (byte-defop-compiler cons 2) |
3327 (byte-defop-compiler aref 2) | |
3328 (byte-defop-compiler get 2+1) | |
3329 (byte-defop-compiler nth 2) | |
5089
99f8ebc082d9
Make #'substring an alias of #'subseq; give the latter the byte code.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4996
diff
changeset
|
3330 (byte-defop-compiler subseq byte-compile-subseq) |
99f8ebc082d9
Make #'substring an alias of #'subseq; give the latter the byte code.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4996
diff
changeset
|
3331 (byte-defop-compiler (substring byte-subseq) 2-3) |
428 | 3332 (byte-defop-compiler (move-marker byte-set-marker) 2-3) |
3333 (byte-defop-compiler set-marker 2-3) | |
3334 (byte-defop-compiler match-beginning 1) | |
3335 (byte-defop-compiler match-end 1) | |
3336 (byte-defop-compiler upcase 1+1) | |
3337 (byte-defop-compiler downcase 1+1) | |
3338 (byte-defop-compiler string= 2) | |
3339 (byte-defop-compiler string< 2) | |
3340 (byte-defop-compiler (string-equal byte-string=) 2) | |
3341 (byte-defop-compiler (string-lessp byte-string<) 2) | |
5503
7b5946dbfb96
Drop support for generating code appropriate for Emacs 19, bytecomp.el
Aidan Kehoe <kehoea@parhasard.net>
parents:
5475
diff
changeset
|
3342 ; (byte-defop-compiler old-equal 2) |
428 | 3343 (byte-defop-compiler nthcdr 2) |
3344 (byte-defop-compiler elt 2) | |
5503
7b5946dbfb96
Drop support for generating code appropriate for Emacs 19, bytecomp.el
Aidan Kehoe <kehoea@parhasard.net>
parents:
5475
diff
changeset
|
3345 (byte-defop-compiler old-member 2) |
7b5946dbfb96
Drop support for generating code appropriate for Emacs 19, bytecomp.el
Aidan Kehoe <kehoea@parhasard.net>
parents:
5475
diff
changeset
|
3346 (byte-defop-compiler old-assq 2) |
428 | 3347 (byte-defop-compiler (rplaca byte-setcar) 2) |
3348 (byte-defop-compiler (rplacd byte-setcdr) 2) | |
3349 (byte-defop-compiler setcar 2) | |
3350 (byte-defop-compiler setcdr 2) | |
3351 (byte-defop-compiler delete-region 2+1) | |
3352 (byte-defop-compiler narrow-to-region 2+1) | |
3353 (byte-defop-compiler (% byte-rem) 2) | |
3354 (byte-defop-compiler aset 3) | |
3355 | |
4677
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4639
diff
changeset
|
3356 (byte-defop-compiler-1 bind-multiple-value-limits) |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4639
diff
changeset
|
3357 (byte-defop-compiler multiple-value-list-internal) |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4639
diff
changeset
|
3358 (byte-defop-compiler-1 multiple-value-call) |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4639
diff
changeset
|
3359 (byte-defop-compiler throw) |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4639
diff
changeset
|
3360 |
5503
7b5946dbfb96
Drop support for generating code appropriate for Emacs 19, bytecomp.el
Aidan Kehoe <kehoea@parhasard.net>
parents:
5475
diff
changeset
|
3361 (byte-defop-compiler member 2) |
7b5946dbfb96
Drop support for generating code appropriate for Emacs 19, bytecomp.el
Aidan Kehoe <kehoea@parhasard.net>
parents:
5475
diff
changeset
|
3362 (byte-defop-compiler assq 2) |
428 | 3363 |
3364 ;;####(byte-defop-compiler move-to-column 1) | |
3365 (byte-defop-compiler-1 interactive byte-compile-noop) | |
3366 (byte-defop-compiler-1 domain byte-compile-domain) | |
3367 | |
3368 ;; As of GNU Emacs 19.18 and Lucid Emacs 19.8, mod and % are different: `%' | |
3369 ;; means integral remainder and may have a negative result; `mod' is always | |
3370 ;; positive, and accepts floating point args. All code which uses `mod' and | |
3371 ;; requires the new interpretation must be compiled with bytecomp version 2.18 | |
3372 ;; or newer, or the emitted code will run the byte-code for `%' instead of an | |
3373 ;; actual call to `mod'. So be careful of compiling new code with an old | |
3374 ;; compiler. Note also that `%' is more efficient than `mod' because the | |
3375 ;; former is byte-coded and the latter is not. | |
3376 ;;(byte-defop-compiler (mod byte-rem) 2) | |
3377 | |
3378 | |
4677
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4639
diff
changeset
|
3379 (defun byte-compile-warn-wrong-args (form n) |
428 | 3380 (when (memq 'subr-callargs byte-compile-warnings) |
3381 (byte-compile-warn "%s called with %d arg%s, but requires %s" | |
3382 (car form) (length (cdr form)) | |
5366
f00192e1cd49
Examining the result of #'length: `eql', not `=', it's better style & cheaper
Aidan Kehoe <kehoea@parhasard.net>
parents:
5358
diff
changeset
|
3383 (if (eql 1 (length (cdr form))) "" "s") n))) |
4677
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4639
diff
changeset
|
3384 |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4639
diff
changeset
|
3385 (defun byte-compile-subr-wrong-args (form n) |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4639
diff
changeset
|
3386 (byte-compile-warn-wrong-args form n) |
428 | 3387 ;; get run-time wrong-number-of-args error. |
3388 (byte-compile-normal-call form)) | |
3389 | |
3390 (defun byte-compile-no-args (form) | |
3391 (case (length (cdr form)) | |
3392 (0 (byte-compile-out (get (car form) 'byte-opcode) 0)) | |
3393 (t (byte-compile-subr-wrong-args form "none")))) | |
3394 | |
3395 (defun byte-compile-one-arg (form) | |
3396 (case (length (cdr form)) | |
3397 (1 (byte-compile-form (car (cdr form))) ;; Push the argument | |
3398 (byte-compile-out (get (car form) 'byte-opcode) 0)) | |
3399 (t (byte-compile-subr-wrong-args form 1)))) | |
3400 | |
3401 (defun byte-compile-two-args (form) | |
3402 (case (length (cdr form)) | |
3403 (2 (byte-compile-form (nth 1 form)) ;; Push the arguments | |
3404 (byte-compile-form (nth 2 form)) | |
3405 (byte-compile-out (get (car form) 'byte-opcode) 0)) | |
3406 (t (byte-compile-subr-wrong-args form 2)))) | |
3407 | |
3408 (defun byte-compile-three-args (form) | |
3409 (case (length (cdr form)) | |
3410 (3 (byte-compile-form (nth 1 form)) ;; Push the arguments | |
3411 (byte-compile-form (nth 2 form)) | |
3412 (byte-compile-form (nth 3 form)) | |
3413 (byte-compile-out (get (car form) 'byte-opcode) 0)) | |
3414 (t (byte-compile-subr-wrong-args form 3)))) | |
3415 | |
3416 (defun byte-compile-zero-or-one-arg (form) | |
3417 (case (length (cdr form)) | |
3418 (0 (byte-compile-one-arg (append form '(nil)))) | |
3419 (1 (byte-compile-one-arg form)) | |
3420 (t (byte-compile-subr-wrong-args form "0-1")))) | |
3421 | |
3422 (defun byte-compile-one-or-two-args (form) | |
3423 (case (length (cdr form)) | |
3424 (1 (byte-compile-two-args (append form '(nil)))) | |
3425 (2 (byte-compile-two-args form)) | |
3426 (t (byte-compile-subr-wrong-args form "1-2")))) | |
3427 | |
3428 (defun byte-compile-two-or-three-args (form) | |
3429 (case (length (cdr form)) | |
3430 (2 (byte-compile-three-args (append form '(nil)))) | |
3431 (3 (byte-compile-three-args form)) | |
3432 (t (byte-compile-subr-wrong-args form "2-3")))) | |
3433 | |
3434 ;; from Ben Wing <ben@xemacs.org>: some inlined functions have extra | |
3435 ;; optional args added to them in XEmacs 19.12. Changing the byte | |
3436 ;; interpreter to deal with these args would be wrong and cause | |
3437 ;; incompatibility, so we generate non-inlined calls for those cases. | |
3438 ;; Without the following functions, spurious warnings will be generated; | |
3439 ;; however, they would still compile correctly because | |
3440 ;; `byte-compile-subr-wrong-args' also converts the call to non-inlined. | |
3441 | |
3442 (defun byte-compile-no-args-with-one-extra (form) | |
3443 (case (length (cdr form)) | |
3444 (0 (byte-compile-no-args form)) | |
446 | 3445 (1 (if (eq nil (nth 1 form)) |
3446 (byte-compile-no-args (butlast form)) | |
3447 (byte-compile-normal-call form))) | |
428 | 3448 (t (byte-compile-subr-wrong-args form "0-1")))) |
3449 | |
3450 (defun byte-compile-one-arg-with-one-extra (form) | |
3451 (case (length (cdr form)) | |
3452 (1 (byte-compile-one-arg form)) | |
446 | 3453 (2 (if (eq nil (nth 2 form)) |
3454 (byte-compile-one-arg (butlast form)) | |
3455 (byte-compile-normal-call form))) | |
428 | 3456 (t (byte-compile-subr-wrong-args form "1-2")))) |
3457 | |
3458 (defun byte-compile-two-args-with-one-extra (form) | |
3459 (case (length (cdr form)) | |
3460 (2 (byte-compile-two-args form)) | |
446 | 3461 (3 (if (eq nil (nth 3 form)) |
3462 (byte-compile-two-args (butlast form)) | |
3463 (byte-compile-normal-call form))) | |
428 | 3464 (t (byte-compile-subr-wrong-args form "2-3")))) |
3465 | |
3466 (defun byte-compile-zero-or-one-arg-with-one-extra (form) | |
3467 (case (length (cdr form)) | |
3468 (0 (byte-compile-one-arg (append form '(nil)))) | |
3469 (1 (byte-compile-one-arg form)) | |
446 | 3470 (2 (if (eq nil (nth 2 form)) |
3471 (byte-compile-one-arg (butlast form)) | |
3472 (byte-compile-normal-call form))) | |
428 | 3473 (t (byte-compile-subr-wrong-args form "0-2")))) |
3474 | |
3475 (defun byte-compile-one-or-two-args-with-one-extra (form) | |
3476 (case (length (cdr form)) | |
3477 (1 (byte-compile-two-args (append form '(nil)))) | |
3478 (2 (byte-compile-two-args form)) | |
446 | 3479 (3 (if (eq nil (nth 3 form)) |
3480 (byte-compile-two-args (butlast form)) | |
3481 (byte-compile-normal-call form))) | |
428 | 3482 (t (byte-compile-subr-wrong-args form "1-3")))) |
3483 | |
3484 (defun byte-compile-two-or-three-args-with-one-extra (form) | |
3485 (case (length (cdr form)) | |
3486 (2 (byte-compile-three-args (append form '(nil)))) | |
3487 (3 (byte-compile-three-args form)) | |
446 | 3488 (4 (if (eq nil (nth 4 form)) |
3489 (byte-compile-three-args (butlast form)) | |
3490 (byte-compile-normal-call form))) | |
428 | 3491 (t (byte-compile-subr-wrong-args form "2-4")))) |
3492 | |
3493 (defun byte-compile-no-args-with-two-extra (form) | |
3494 (case (length (cdr form)) | |
3495 (0 (byte-compile-no-args form)) | |
3496 ((1 2) (byte-compile-normal-call form)) | |
3497 (t (byte-compile-subr-wrong-args form "0-2")))) | |
3498 | |
3499 (defun byte-compile-one-arg-with-two-extra (form) | |
3500 (case (length (cdr form)) | |
3501 (1 (byte-compile-one-arg form)) | |
3502 ((2 3) (byte-compile-normal-call form)) | |
3503 (t (byte-compile-subr-wrong-args form "1-3")))) | |
3504 | |
3505 (defun byte-compile-noop (form) | |
3506 (byte-compile-constant nil)) | |
3507 | |
3508 (defun byte-compile-discard () | |
3509 (byte-compile-out 'byte-discard 0)) | |
3510 | |
446 | 3511 (defun byte-compile-max (form) |
3512 (let ((args (cdr form))) | |
428 | 3513 (case (length args) |
446 | 3514 (0 (byte-compile-subr-wrong-args form "1 or more")) |
3515 (1 (byte-compile-form (car args)) | |
3516 (when (not byte-compile-delete-errors) | |
3517 (byte-compile-out 'byte-dup 0) | |
3518 (byte-compile-out 'byte-max 0))) | |
428 | 3519 (t (byte-compile-form (car args)) |
446 | 3520 (dolist (elt (cdr args)) |
3521 (byte-compile-form elt) | |
3522 (byte-compile-out 'byte-max 0)))))) | |
3523 | |
3524 (defun byte-compile-min (form) | |
3525 (let ((args (cdr form))) | |
3526 (case (length args) | |
3527 (0 (byte-compile-subr-wrong-args form "1 or more")) | |
3528 (1 (byte-compile-form (car args)) | |
3529 (when (not byte-compile-delete-errors) | |
3530 (byte-compile-out 'byte-dup 0) | |
3531 (byte-compile-out 'byte-min 0))) | |
3532 (t (byte-compile-form (car args)) | |
3533 (dolist (elt (cdr args)) | |
3534 (byte-compile-form elt) | |
3535 (byte-compile-out 'byte-min 0)))))) | |
428 | 3536 |
3537 | |
3538 ;; more complicated compiler macros | |
3539 | |
3540 (byte-defop-compiler list) | |
3541 (byte-defop-compiler concat) | |
3542 (byte-defop-compiler fset) | |
3543 (byte-defop-compiler insert) | |
3544 (byte-defop-compiler-1 function byte-compile-function-form) | |
446 | 3545 (byte-defop-compiler max) |
3546 (byte-defop-compiler min) | |
3547 (byte-defop-compiler (+ byte-plus) byte-compile-plus) | |
3548 (byte-defop-compiler-1 - byte-compile-minus) | |
3549 (byte-defop-compiler (* byte-mult) byte-compile-mult) | |
3550 (byte-defop-compiler (/ byte-quo) byte-compile-quo) | |
428 | 3551 (byte-defop-compiler nconc) |
3552 (byte-defop-compiler-1 beginning-of-line) | |
3553 | |
3554 (byte-defop-compiler (= byte-eqlsign) byte-compile-arithcompare) | |
3555 (byte-defop-compiler (< byte-lss) byte-compile-arithcompare) | |
3556 (byte-defop-compiler (> byte-gtr) byte-compile-arithcompare) | |
3557 (byte-defop-compiler (<= byte-leq) byte-compile-arithcompare) | |
3558 (byte-defop-compiler (>= byte-geq) byte-compile-arithcompare) | |
3559 | |
3560 (defun byte-compile-arithcompare (form) | |
3561 (case (length (cdr form)) | |
3562 (0 (byte-compile-subr-wrong-args form "1 or more")) | |
549 | 3563 (1 (if byte-compile-delete-errors |
3564 (byte-compile-constant t) | |
3565 (byte-compile-normal-call form))) | |
428 | 3566 (2 (byte-compile-two-args form)) |
3567 (t (byte-compile-normal-call form)))) | |
3568 | |
3569 (byte-defop-compiler /= byte-compile-/=) | |
3570 | |
3571 (defun byte-compile-/= (form) | |
3572 (case (length (cdr form)) | |
3573 (0 (byte-compile-subr-wrong-args form "1 or more")) | |
3574 (1 (byte-compile-constant t)) | |
3575 ;; optimize (/= X Y) to (not (= X Y)) | |
3576 (2 (byte-compile-form-do-effect `(not (= ,@(cdr form))))) | |
3577 (t (byte-compile-normal-call form)))) | |
3578 | |
3579 ;; buffer-substring now has its own function. This used to be | |
3580 ;; 2+1, but now all args are optional. | |
3581 (byte-defop-compiler buffer-substring) | |
3582 | |
3583 (defun byte-compile-buffer-substring (form) | |
3584 ;; buffer-substring used to take exactly two args, but now takes 0-3. | |
3585 ;; convert 0-2 to two args and use special bytecode operand. | |
3586 ;; convert 3 args to a normal call. | |
3587 (case (length (cdr form)) | |
3588 (0 (byte-compile-two-args (append form '(nil nil)))) | |
3589 (1 (byte-compile-two-args (append form '(nil)))) | |
3590 (2 (byte-compile-two-args form)) | |
3591 (3 (byte-compile-normal-call form)) | |
3592 (t (byte-compile-subr-wrong-args form "0-3")))) | |
3593 | |
3594 (defun byte-compile-list (form) | |
3595 (let* ((args (cdr form)) | |
3596 (nargs (length args))) | |
3597 (cond | |
5366
f00192e1cd49
Examining the result of #'length: `eql', not `=', it's better style & cheaper
Aidan Kehoe <kehoea@parhasard.net>
parents:
5358
diff
changeset
|
3598 ((eql nargs 0) |
428 | 3599 (byte-compile-constant nil)) |
3600 ((< nargs 5) | |
4783
e29fcfd8df5f
Eliminate most core code byte-compile warnings.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4775
diff
changeset
|
3601 (mapc 'byte-compile-form args) |
428 | 3602 (byte-compile-out |
3603 (aref [byte-list1 byte-list2 byte-list3 byte-list4] (1- nargs)) | |
3604 0)) | |
3605 ((< nargs 256) | |
4783
e29fcfd8df5f
Eliminate most core code byte-compile warnings.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4775
diff
changeset
|
3606 (mapc 'byte-compile-form args) |
428 | 3607 (byte-compile-out 'byte-listN nargs)) |
3608 (t (byte-compile-normal-call form))))) | |
3609 | |
3610 (defun byte-compile-concat (form) | |
3611 (let* ((args (cdr form)) | |
3612 (nargs (length args))) | |
3613 ;; Concat of one arg is not a no-op if arg is not a string. | |
3614 (cond | |
3615 ((memq nargs '(2 3 4)) | |
4783
e29fcfd8df5f
Eliminate most core code byte-compile warnings.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4775
diff
changeset
|
3616 (mapc 'byte-compile-form args) |
428 | 3617 (byte-compile-out |
3618 (aref [byte-concat2 byte-concat3 byte-concat4] (- nargs 2)) | |
3619 0)) | |
3620 ((eq nargs 0) | |
3621 (byte-compile-form "")) | |
3622 ((< nargs 256) | |
4783
e29fcfd8df5f
Eliminate most core code byte-compile warnings.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4775
diff
changeset
|
3623 (mapc 'byte-compile-form args) |
428 | 3624 (byte-compile-out 'byte-concatN nargs)) |
3625 ((byte-compile-normal-call form))))) | |
3626 | |
446 | 3627 (defun byte-compile-plus (form) |
3628 (let ((args (cdr form))) | |
3629 (case (length args) | |
3630 (0 (byte-compile-constant 0)) | |
3631 (1 (byte-compile-plus (append form '(0)))) | |
3632 (t (byte-compile-form (car args)) | |
3633 (dolist (elt (cdr args)) | |
3634 (case elt | |
3635 (0 (when (not byte-compile-delete-errors) | |
3636 (byte-compile-constant 0) | |
3637 (byte-compile-out 'byte-plus 0))) | |
3638 (+1 (byte-compile-out 'byte-add1 0)) | |
3639 (-1 (byte-compile-out 'byte-sub1 0)) | |
3640 (t | |
3641 (byte-compile-form elt) | |
3642 (byte-compile-out 'byte-plus 0)))))))) | |
3643 | |
428 | 3644 (defun byte-compile-minus (form) |
3645 (let ((args (cdr form))) | |
3646 (case (length args) | |
3647 (0 (byte-compile-subr-wrong-args form "1 or more")) | |
3648 (1 (byte-compile-form (car args)) | |
3649 (byte-compile-out 'byte-negate 0)) | |
3650 (t (byte-compile-form (car args)) | |
3651 (dolist (elt (cdr args)) | |
446 | 3652 (case elt |
3653 (0 (when (not byte-compile-delete-errors) | |
3654 (byte-compile-constant 0) | |
3655 (byte-compile-out 'byte-diff 0))) | |
3656 (+1 (byte-compile-out 'byte-sub1 0)) | |
3657 (-1 (byte-compile-out 'byte-add1 0)) | |
3658 (t | |
3659 (byte-compile-form elt) | |
3660 (byte-compile-out 'byte-diff 0)))))))) | |
3661 | |
3662 (defun byte-compile-mult (form) | |
3663 (let ((args (cdr form))) | |
3664 (case (length args) | |
3665 (0 (byte-compile-constant 1)) | |
3666 (1 (byte-compile-mult (append form '(1)))) | |
3667 (t (byte-compile-form (car args)) | |
3668 (dolist (elt (cdr args)) | |
3669 (case elt | |
3670 (1 (when (not byte-compile-delete-errors) | |
3671 (byte-compile-constant 1) | |
3672 (byte-compile-out 'byte-mult 0))) | |
3673 (-1 (byte-compile-out 'byte-negate 0)) | |
3674 (2 (byte-compile-out 'byte-dup 0) | |
3675 (byte-compile-out 'byte-plus 0)) | |
3676 (t | |
3677 (byte-compile-form elt) | |
3678 (byte-compile-out 'byte-mult 0)))))))) | |
428 | 3679 |
3680 (defun byte-compile-quo (form) | |
3681 (let ((args (cdr form))) | |
3682 (case (length args) | |
3683 (0 (byte-compile-subr-wrong-args form "1 or more")) | |
3684 (1 (byte-compile-constant 1) | |
3685 (byte-compile-form (car args)) | |
3686 (byte-compile-out 'byte-quo 0)) | |
3687 (t (byte-compile-form (car args)) | |
3688 (dolist (elt (cdr args)) | |
446 | 3689 (case elt |
3690 (+1 (when (not byte-compile-delete-errors) | |
3691 (byte-compile-constant 1) | |
3692 (byte-compile-out 'byte-quo 0))) | |
3693 (-1 (byte-compile-out 'byte-negate 0)) | |
3694 (t | |
3695 (when (and (numberp elt) (= elt 0)) | |
3696 (byte-compile-warn "Attempt to divide by zero: %s" form)) | |
3697 (byte-compile-form elt) | |
3698 (byte-compile-out 'byte-quo 0)))))))) | |
428 | 3699 |
3700 (defun byte-compile-nconc (form) | |
3701 (let ((args (cdr form))) | |
3702 (case (length args) | |
3703 (0 (byte-compile-constant nil)) | |
3704 ;; nconc of one arg is a noop, even if that arg isn't a list. | |
3705 (1 (byte-compile-form (car args))) | |
3706 (t (byte-compile-form (car args)) | |
3707 (dolist (elt (cdr args)) | |
3708 (byte-compile-form elt) | |
3709 (byte-compile-out 'byte-nconc 0)))))) | |
3710 | |
3711 (defun byte-compile-fset (form) | |
3712 ;; warn about forms like (fset 'foo '(lambda () ...)) | |
3713 ;; (where the lambda expression is non-trivial...) | |
3714 ;; Except don't warn if the first argument is 'make-byte-code, because | |
3715 ;; I'm sick of getting mail asking me whether that warning is a problem. | |
3716 (let ((fn (nth 2 form)) | |
3717 body) | |
3718 (when (and (eq (car-safe fn) 'quote) | |
3719 (eq (car-safe (setq fn (nth 1 fn))) 'lambda) | |
3720 (not (eq (car-safe (cdr-safe (nth 1 form))) 'make-byte-code))) | |
3721 (setq body (cdr (cdr fn))) | |
3722 (if (stringp (car body)) (setq body (cdr body))) | |
3723 (if (eq 'interactive (car-safe (car body))) (setq body (cdr body))) | |
3724 (if (and (consp (car body)) | |
4719
bd51ab22afa8
Make it possible to silence warnings issued when #'mapcar's result is discarded.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4716
diff
changeset
|
3725 (not (eq 'byte-code (car (car body)))) |
bd51ab22afa8
Make it possible to silence warnings issued when #'mapcar's result is discarded.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4716
diff
changeset
|
3726 (memq 'quoted-lambda byte-compile-warnings)) |
428 | 3727 (byte-compile-warn |
3728 "A quoted lambda form is the second argument of fset. This is probably | |
3729 not what you want, as that lambda cannot be compiled. Consider using | |
3730 the syntax (function (lambda (...) ...)) instead.")))) | |
3731 (byte-compile-two-args form)) | |
3732 | |
5089
99f8ebc082d9
Make #'substring an alias of #'subseq; give the latter the byte code.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4996
diff
changeset
|
3733 (defun byte-compile-subseq (form) |
99f8ebc082d9
Make #'substring an alias of #'subseq; give the latter the byte code.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4996
diff
changeset
|
3734 (byte-compile-two-or-three-args form) |
99f8ebc082d9
Make #'substring an alias of #'subseq; give the latter the byte code.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4996
diff
changeset
|
3735 ;; Check that XEmacs supports the substring-subseq equivalence. |
99f8ebc082d9
Make #'substring an alias of #'subseq; give the latter the byte code.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4996
diff
changeset
|
3736 (pushnew '(eq 'subseq (symbol-function 'substring)) |
99f8ebc082d9
Make #'substring an alias of #'subseq; give the latter the byte code.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4996
diff
changeset
|
3737 byte-compile-checks-on-load :test #'equal)) |
99f8ebc082d9
Make #'substring an alias of #'subseq; give the latter the byte code.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4996
diff
changeset
|
3738 |
4743
776bbf454f3a
Be much more comprehensive in our use of byte-compile-funarg.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4719
diff
changeset
|
3739 (defmacro byte-compile-funarg-n (&rest n) |
776bbf454f3a
Be much more comprehensive in our use of byte-compile-funarg.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4719
diff
changeset
|
3740 `#'(lambda (form) |
776bbf454f3a
Be much more comprehensive in our use of byte-compile-funarg.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4719
diff
changeset
|
3741 ,@(loop |
776bbf454f3a
Be much more comprehensive in our use of byte-compile-funarg.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4719
diff
changeset
|
3742 for en in n |
776bbf454f3a
Be much more comprehensive in our use of byte-compile-funarg.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4719
diff
changeset
|
3743 collect `(let ((fn (nth ,en form))) |
776bbf454f3a
Be much more comprehensive in our use of byte-compile-funarg.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4719
diff
changeset
|
3744 (when (and (eq (car-safe fn) 'quote) |
776bbf454f3a
Be much more comprehensive in our use of byte-compile-funarg.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4719
diff
changeset
|
3745 (eq (car-safe (nth 1 fn)) 'lambda) |
776bbf454f3a
Be much more comprehensive in our use of byte-compile-funarg.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4719
diff
changeset
|
3746 (or |
776bbf454f3a
Be much more comprehensive in our use of byte-compile-funarg.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4719
diff
changeset
|
3747 (null (memq 'quoted-lambda |
776bbf454f3a
Be much more comprehensive in our use of byte-compile-funarg.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4719
diff
changeset
|
3748 byte-compile-warnings)) |
776bbf454f3a
Be much more comprehensive in our use of byte-compile-funarg.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4719
diff
changeset
|
3749 (byte-compile-warn |
5182
2e528066e2fc
Move #'sort*, #'fill, #'merge to C from cl-seq.el.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5106
diff
changeset
|
3750 "Passing a quoted lambda (arg %d) to #'%s, \ |
2e528066e2fc
Move #'sort*, #'fill, #'merge to C from cl-seq.el.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5106
diff
changeset
|
3751 forcing function quoting" ,en (car form)))) |
4743
776bbf454f3a
Be much more comprehensive in our use of byte-compile-funarg.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4719
diff
changeset
|
3752 (setcar fn 'function)))) |
776bbf454f3a
Be much more comprehensive in our use of byte-compile-funarg.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4719
diff
changeset
|
3753 (byte-compile-normal-call form))) |
776bbf454f3a
Be much more comprehensive in our use of byte-compile-funarg.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4719
diff
changeset
|
3754 |
776bbf454f3a
Be much more comprehensive in our use of byte-compile-funarg.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4719
diff
changeset
|
3755 ;; (mapcar '(lambda (x) ..) ..) ==> (mapcar (function (lambda (x) ..)) ..) |
776bbf454f3a
Be much more comprehensive in our use of byte-compile-funarg.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4719
diff
changeset
|
3756 ;; for cases where it's guaranteed that first arg will be used as a lambda. |
776bbf454f3a
Be much more comprehensive in our use of byte-compile-funarg.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4719
diff
changeset
|
3757 (defalias 'byte-compile-funarg (byte-compile-funarg-n 1)) |
776bbf454f3a
Be much more comprehensive in our use of byte-compile-funarg.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4719
diff
changeset
|
3758 |
776bbf454f3a
Be much more comprehensive in our use of byte-compile-funarg.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4719
diff
changeset
|
3759 ;; (sort ... '(lambda (x) ..)) ==> (sort ... (function (lambda (x) ..))) |
776bbf454f3a
Be much more comprehensive in our use of byte-compile-funarg.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4719
diff
changeset
|
3760 ;; for cases where it's guaranteed that second arg will be used as a lambda. |
776bbf454f3a
Be much more comprehensive in our use of byte-compile-funarg.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4719
diff
changeset
|
3761 (defalias 'byte-compile-funarg-2 (byte-compile-funarg-n 2)) |
776bbf454f3a
Be much more comprehensive in our use of byte-compile-funarg.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4719
diff
changeset
|
3762 |
776bbf454f3a
Be much more comprehensive in our use of byte-compile-funarg.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4719
diff
changeset
|
3763 ;; For #'merge, basically. |
776bbf454f3a
Be much more comprehensive in our use of byte-compile-funarg.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4719
diff
changeset
|
3764 (defalias 'byte-compile-funarg-4 (byte-compile-funarg-n 4)) |
776bbf454f3a
Be much more comprehensive in our use of byte-compile-funarg.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4719
diff
changeset
|
3765 |
776bbf454f3a
Be much more comprehensive in our use of byte-compile-funarg.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4719
diff
changeset
|
3766 ;; For #'call-with-condition-handler, basically. |
776bbf454f3a
Be much more comprehensive in our use of byte-compile-funarg.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4719
diff
changeset
|
3767 (defalias 'byte-compile-funarg-1-2 (byte-compile-funarg-n 1 2)) |
428 | 3768 |
4716
dca5bb2adff1
Don't cons with #'mapcar calls where the result is discarded,
Aidan Kehoe <kehoea@parhasard.net>
parents:
4686
diff
changeset
|
3769 ;; XEmacs change; don't cons up the list if it's going to be immediately |
4743
776bbf454f3a
Be much more comprehensive in our use of byte-compile-funarg.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4719
diff
changeset
|
3770 ;; discarded. GNU give a warning in `byte-compile-normal-call' instead, and |
776bbf454f3a
Be much more comprehensive in our use of byte-compile-funarg.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4719
diff
changeset
|
3771 ;; only for #'mapcar. |
4719
bd51ab22afa8
Make it possible to silence warnings issued when #'mapcar's result is discarded.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4716
diff
changeset
|
3772 (defun byte-compile-maybe-mapc (form) |
bd51ab22afa8
Make it possible to silence warnings issued when #'mapcar's result is discarded.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4716
diff
changeset
|
3773 (and for-effect |
bd51ab22afa8
Make it possible to silence warnings issued when #'mapcar's result is discarded.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4716
diff
changeset
|
3774 (or (null (memq 'discarded-consing byte-compile-warnings)) |
bd51ab22afa8
Make it possible to silence warnings issued when #'mapcar's result is discarded.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4716
diff
changeset
|
3775 (byte-compile-warn |
bd51ab22afa8
Make it possible to silence warnings issued when #'mapcar's result is discarded.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4716
diff
changeset
|
3776 "Discarding the result of #'%s; maybe you meant #'mapc?" |
bd51ab22afa8
Make it possible to silence warnings issued when #'mapcar's result is discarded.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4716
diff
changeset
|
3777 (car form))) |
4995
8431b52e43b1
Move the various map* functions to C; add #'map-into.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4885
diff
changeset
|
3778 (setq form (cons 'mapc (cdr form)))) |
4716
dca5bb2adff1
Don't cons with #'mapcar calls where the result is discarded,
Aidan Kehoe <kehoea@parhasard.net>
parents:
4686
diff
changeset
|
3779 (byte-compile-funarg form)) |
dca5bb2adff1
Don't cons with #'mapcar calls where the result is discarded,
Aidan Kehoe <kehoea@parhasard.net>
parents:
4686
diff
changeset
|
3780 |
dca5bb2adff1
Don't cons with #'mapcar calls where the result is discarded,
Aidan Kehoe <kehoea@parhasard.net>
parents:
4686
diff
changeset
|
3781 (defun byte-compile-maplist (form) |
4719
bd51ab22afa8
Make it possible to silence warnings issued when #'mapcar's result is discarded.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4716
diff
changeset
|
3782 (and for-effect |
bd51ab22afa8
Make it possible to silence warnings issued when #'mapcar's result is discarded.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4716
diff
changeset
|
3783 (or (null (memq 'discarded-consing byte-compile-warnings)) |
bd51ab22afa8
Make it possible to silence warnings issued when #'mapcar's result is discarded.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4716
diff
changeset
|
3784 (byte-compile-warn |
bd51ab22afa8
Make it possible to silence warnings issued when #'mapcar's result is discarded.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4716
diff
changeset
|
3785 "Discarding the result of #'maplist; maybe you meant #'mapl?")) |
bd51ab22afa8
Make it possible to silence warnings issued when #'mapcar's result is discarded.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4716
diff
changeset
|
3786 (setq form (cons 'mapl (cdr form)))) |
4716
dca5bb2adff1
Don't cons with #'mapcar calls where the result is discarded,
Aidan Kehoe <kehoea@parhasard.net>
parents:
4686
diff
changeset
|
3787 (byte-compile-funarg form)) |
dca5bb2adff1
Don't cons with #'mapcar calls where the result is discarded,
Aidan Kehoe <kehoea@parhasard.net>
parents:
4686
diff
changeset
|
3788 |
5182
2e528066e2fc
Move #'sort*, #'fill, #'merge to C from cl-seq.el.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5106
diff
changeset
|
3789 ;; For when calls to #'sort or #'mapcar have more than two args, something |
2e528066e2fc
Move #'sort*, #'fill, #'merge to C from cl-seq.el.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5106
diff
changeset
|
3790 ;; recent XEmacs can handle, but GNU and 21.4 can't. |
2e528066e2fc
Move #'sort*, #'fill, #'merge to C from cl-seq.el.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5106
diff
changeset
|
3791 (defmacro byte-compile-maybe-add-* (complex max) |
2e528066e2fc
Move #'sort*, #'fill, #'merge to C from cl-seq.el.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5106
diff
changeset
|
3792 `#'(lambda (form) |
2e528066e2fc
Move #'sort*, #'fill, #'merge to C from cl-seq.el.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5106
diff
changeset
|
3793 (when (> (length (cdr form)) ,max) |
2e528066e2fc
Move #'sort*, #'fill, #'merge to C from cl-seq.el.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5106
diff
changeset
|
3794 (when (memq 'callargs byte-compile-warnings) |
2e528066e2fc
Move #'sort*, #'fill, #'merge to C from cl-seq.el.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5106
diff
changeset
|
3795 (byte-compile-warn |
2e528066e2fc
Move #'sort*, #'fill, #'merge to C from cl-seq.el.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5106
diff
changeset
|
3796 "#'%s called with %d arguments, using #'%s instead" |
2e528066e2fc
Move #'sort*, #'fill, #'merge to C from cl-seq.el.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5106
diff
changeset
|
3797 (car form) (length (cdr form)) ',complex)) |
2e528066e2fc
Move #'sort*, #'fill, #'merge to C from cl-seq.el.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5106
diff
changeset
|
3798 (setq form (cons ',complex (cdr form)))) |
2e528066e2fc
Move #'sort*, #'fill, #'merge to C from cl-seq.el.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5106
diff
changeset
|
3799 (funcall (or (get ',complex 'byte-compile) |
2e528066e2fc
Move #'sort*, #'fill, #'merge to C from cl-seq.el.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5106
diff
changeset
|
3800 'byte-compile-normal-call) form))) |
2e528066e2fc
Move #'sort*, #'fill, #'merge to C from cl-seq.el.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5106
diff
changeset
|
3801 |
2e528066e2fc
Move #'sort*, #'fill, #'merge to C from cl-seq.el.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5106
diff
changeset
|
3802 (defalias 'byte-compile-mapcar (byte-compile-maybe-add-* mapcar* 2)) |
2e528066e2fc
Move #'sort*, #'fill, #'merge to C from cl-seq.el.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5106
diff
changeset
|
3803 |
2e528066e2fc
Move #'sort*, #'fill, #'merge to C from cl-seq.el.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5106
diff
changeset
|
3804 (defalias 'byte-compile-sort (byte-compile-maybe-add-* sort* 2)) |
2e528066e2fc
Move #'sort*, #'fill, #'merge to C from cl-seq.el.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5106
diff
changeset
|
3805 |
2e528066e2fc
Move #'sort*, #'fill, #'merge to C from cl-seq.el.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5106
diff
changeset
|
3806 (defalias 'byte-compile-fillarray (byte-compile-maybe-add-* fill 2)) |
2e528066e2fc
Move #'sort*, #'fill, #'merge to C from cl-seq.el.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5106
diff
changeset
|
3807 |
428 | 3808 ;; (function foo) must compile like 'foo, not like (symbol-function 'foo). |
3809 ;; Otherwise it will be incompatible with the interpreter, | |
3810 ;; and (funcall (function foo)) will lose with autoloads. | |
3811 | |
3812 (defun byte-compile-function-form (form) | |
5265
5663ae9a8989
Warn at compile time, error at runtime, with (quote X Y), (function X Y).
Aidan Kehoe <kehoea@parhasard.net>
parents:
5263
diff
changeset
|
3813 (if (cddr form) |
5663ae9a8989
Warn at compile time, error at runtime, with (quote X Y), (function X Y).
Aidan Kehoe <kehoea@parhasard.net>
parents:
5263
diff
changeset
|
3814 (byte-compile-normal-call |
5663ae9a8989
Warn at compile time, error at runtime, with (quote X Y), (function X Y).
Aidan Kehoe <kehoea@parhasard.net>
parents:
5263
diff
changeset
|
3815 `(signal 'wrong-number-of-arguments '(function ,(length (cdr form))))) |
5574
d4f334808463
Support inlining labels, bytecomp.el.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5573
diff
changeset
|
3816 (byte-compile-constant (if (eq 'lambda (car-safe (nth 1 form))) |
d4f334808463
Support inlining labels, bytecomp.el.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5573
diff
changeset
|
3817 (byte-compile-lambda (nth 1 form)) |
d4f334808463
Support inlining labels, bytecomp.el.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5573
diff
changeset
|
3818 (nth 1 form))))) |
428 | 3819 |
3820 (defun byte-compile-insert (form) | |
3821 (cond ((null (cdr form)) | |
3822 (byte-compile-constant nil)) | |
3823 ((<= (length form) 256) | |
4783
e29fcfd8df5f
Eliminate most core code byte-compile warnings.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4775
diff
changeset
|
3824 (mapc 'byte-compile-form (cdr form)) |
428 | 3825 (if (cdr (cdr form)) |
3826 (byte-compile-out 'byte-insertN (length (cdr form))) | |
3827 (byte-compile-out 'byte-insert 0))) | |
3828 ((memq t (mapcar 'consp (cdr (cdr form)))) | |
3829 (byte-compile-normal-call form)) | |
3830 ;; We can split it; there is no function call after inserting 1st arg. | |
3831 (t | |
3832 (while (setq form (cdr form)) | |
3833 (byte-compile-form (car form)) | |
3834 (byte-compile-out 'byte-insert 0) | |
3835 (when (cdr form) | |
3836 (byte-compile-discard)))))) | |
3837 | |
3838 ;; alas, the old (pre-19.12, and all existing versions of FSFmacs 19) | |
3839 ;; byte compiler will generate incorrect code for | |
3840 ;; (beginning-of-line nil buffer) because it buggily doesn't | |
3841 ;; check the number of arguments passed to beginning-of-line. | |
3842 | |
3843 (defun byte-compile-beginning-of-line (form) | |
3844 (let ((len (length form))) | |
3845 (cond ((> len 3) | |
3846 (byte-compile-subr-wrong-args form "0-2")) | |
5366
f00192e1cd49
Examining the result of #'length: `eql', not `=', it's better style & cheaper
Aidan Kehoe <kehoea@parhasard.net>
parents:
5358
diff
changeset
|
3847 ((or (eql len 3) (not (byte-compile-constp (nth 1 form)))) |
428 | 3848 (byte-compile-normal-call form)) |
3849 (t | |
3850 (byte-compile-form | |
3851 (list 'forward-line | |
3852 (if (integerp (setq form (or (eval (nth 1 form)) 1))) | |
3853 (1- form) | |
3854 (byte-compile-warn | |
3855 "Non-numeric arg to beginning-of-line: %s" form) | |
3856 (list '1- (list 'quote form)))) | |
3857 t) | |
3858 (byte-compile-constant nil))))) | |
3859 | |
3860 | |
3861 (byte-defop-compiler set) | |
3862 (byte-defop-compiler-1 setq) | |
3863 (byte-defop-compiler-1 set-default) | |
3864 (byte-defop-compiler-1 setq-default) | |
3865 | |
3866 (byte-defop-compiler-1 quote) | |
3867 (byte-defop-compiler-1 quote-form) | |
3868 | |
3869 (defun byte-compile-setq (form) | |
3870 (let ((args (cdr form)) var val) | |
3871 (if (null args) | |
3872 ;; (setq), with no arguments. | |
3873 (byte-compile-form nil for-effect) | |
3874 (while args | |
3875 (setq var (pop args)) | |
3876 (if (null args) | |
3877 ;; Odd number of args? Let `set' get the error. | |
3878 (byte-compile-form `(set ',var) for-effect) | |
3879 (setq val (pop args)) | |
5344
2a54dfbe434f
Don't quote keywords, they've been self-quoting for well over a decade.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5301
diff
changeset
|
3880 (byte-compile-form val) |
2a54dfbe434f
Don't quote keywords, they've been self-quoting for well over a decade.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5301
diff
changeset
|
3881 (unless (or args for-effect) |
2a54dfbe434f
Don't quote keywords, they've been self-quoting for well over a decade.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5301
diff
changeset
|
3882 (byte-compile-out 'byte-dup 0)) |
2a54dfbe434f
Don't quote keywords, they've been self-quoting for well over a decade.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5301
diff
changeset
|
3883 (byte-compile-variable-ref 'byte-varset var))))) |
428 | 3884 (setq for-effect nil)) |
3885 | |
3886 (defun byte-compile-set (form) | |
3887 ;; Compile (set 'foo x) as (setq foo x) for trivially better code and so | |
3888 ;; that we get applicable warnings. Compile everything else (including | |
3889 ;; malformed calls) like a normal 2-arg byte-coded function. | |
3890 (let ((symform (nth 1 form)) | |
3891 (valform (nth 2 form)) | |
3892 sym) | |
5344
2a54dfbe434f
Don't quote keywords, they've been self-quoting for well over a decade.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5301
diff
changeset
|
3893 (if (and (eql (length form) 3) |
2a54dfbe434f
Don't quote keywords, they've been self-quoting for well over a decade.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5301
diff
changeset
|
3894 (eql (safe-length symform) 2) |
428 | 3895 (eq (car symform) 'quote) |
5344
2a54dfbe434f
Don't quote keywords, they've been self-quoting for well over a decade.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5301
diff
changeset
|
3896 (symbolp (setq sym (car (cdr symform))))) |
428 | 3897 (byte-compile-setq `(setq ,sym ,valform)) |
3898 (byte-compile-two-args form)))) | |
3899 | |
3900 (defun byte-compile-setq-default (form) | |
3901 (let ((args (cdr form))) | |
3902 (if (null args) | |
3903 ;; (setq-default), with no arguments. | |
3904 (byte-compile-form nil for-effect) | |
3905 ;; emit multiple calls to `set-default' if necessary | |
3906 (while args | |
3907 (byte-compile-form | |
3908 ;; Odd number of args? Let `set-default' get the error. | |
3909 `(set-default ',(pop args) ,@(if args (list (pop args)) nil)) | |
3910 (if args t for-effect))))) | |
3911 (setq for-effect nil)) | |
3912 | |
3913 (defun byte-compile-set-default (form) | |
3914 (let* ((args (cdr form)) | |
3915 (nargs (length args)) | |
3916 (var (car args))) | |
5366
f00192e1cd49
Examining the result of #'length: `eql', not `=', it's better style & cheaper
Aidan Kehoe <kehoea@parhasard.net>
parents:
5358
diff
changeset
|
3917 (when (and (eql (safe-length var) 2) (eq (car var) 'quote)) |
428 | 3918 (let ((sym (nth 1 var))) |
3919 (cond | |
3920 ((not (symbolp sym)) | |
3921 (byte-compile-warn "Attempt to set-globally non-symbol %s" sym)) | |
3922 ((byte-compile-constant-symbol-p sym) | |
3923 (byte-compile-warn "Attempt to set-globally constant symbol %s" sym)) | |
3924 ((let ((cell (assq sym byte-compile-bound-variables))) | |
3925 (and cell | |
3926 (setcdr cell (logior (cdr cell) byte-compile-assigned-bit)) | |
3927 t))) | |
3928 ;; notice calls to set-default/setq-default for variables which | |
3929 ;; have not been declared with defvar/defconst. | |
3930 ((globally-boundp sym)) ; OK | |
3931 ((not (memq 'free-vars byte-compile-warnings))) ; warnings suppressed? | |
3932 ((memq sym byte-compile-free-assignments)) ; already warned about sym | |
3933 (t | |
3934 (byte-compile-warn "assignment to free variable %s" sym) | |
3935 (push sym byte-compile-free-assignments))))) | |
5366
f00192e1cd49
Examining the result of #'length: `eql', not `=', it's better style & cheaper
Aidan Kehoe <kehoea@parhasard.net>
parents:
5358
diff
changeset
|
3936 (if (eql nargs 2) |
428 | 3937 ;; now emit a normal call to set-default |
3938 (byte-compile-normal-call form) | |
3939 (byte-compile-subr-wrong-args form 2)))) | |
3940 | |
3941 | |
3942 (defun byte-compile-quote (form) | |
5265
5663ae9a8989
Warn at compile time, error at runtime, with (quote X Y), (function X Y).
Aidan Kehoe <kehoea@parhasard.net>
parents:
5263
diff
changeset
|
3943 (if (cddr form) |
5663ae9a8989
Warn at compile time, error at runtime, with (quote X Y), (function X Y).
Aidan Kehoe <kehoea@parhasard.net>
parents:
5263
diff
changeset
|
3944 (byte-compile-normal-call |
5663ae9a8989
Warn at compile time, error at runtime, with (quote X Y), (function X Y).
Aidan Kehoe <kehoea@parhasard.net>
parents:
5263
diff
changeset
|
3945 `(signal 'wrong-number-of-arguments '(quote ,(length (cdr form))))) |
5663ae9a8989
Warn at compile time, error at runtime, with (quote X Y), (function X Y).
Aidan Kehoe <kehoea@parhasard.net>
parents:
5263
diff
changeset
|
3946 (byte-compile-constant (car (cdr form))))) |
428 | 3947 |
3948 (defun byte-compile-quote-form (form) | |
5265
5663ae9a8989
Warn at compile time, error at runtime, with (quote X Y), (function X Y).
Aidan Kehoe <kehoea@parhasard.net>
parents:
5263
diff
changeset
|
3949 (if (cddr form) |
5663ae9a8989
Warn at compile time, error at runtime, with (quote X Y), (function X Y).
Aidan Kehoe <kehoea@parhasard.net>
parents:
5263
diff
changeset
|
3950 (byte-compile-normal-call |
5663ae9a8989
Warn at compile time, error at runtime, with (quote X Y), (function X Y).
Aidan Kehoe <kehoea@parhasard.net>
parents:
5263
diff
changeset
|
3951 `(signal 'wrong-number-of-arguments '(quote ,(length (cdr form))))) |
5663ae9a8989
Warn at compile time, error at runtime, with (quote X Y), (function X Y).
Aidan Kehoe <kehoea@parhasard.net>
parents:
5263
diff
changeset
|
3952 (byte-compile-constant (byte-compile-top-level (nth 1 form))))) |
428 | 3953 |
3954 ;;; control structures | |
3955 | |
3956 (defun byte-compile-body (body &optional for-effect) | |
3957 (while (cdr body) | |
3958 (byte-compile-form (car body) t) | |
3959 (setq body (cdr body))) | |
3960 (byte-compile-form (car body) for-effect)) | |
3961 | |
3962 (proclaim-inline byte-compile-body-do-effect) | |
3963 (defun byte-compile-body-do-effect (body) | |
3964 (byte-compile-body body for-effect) | |
3965 (setq for-effect nil)) | |
3966 | |
3967 (proclaim-inline byte-compile-form-do-effect) | |
3968 (defun byte-compile-form-do-effect (form) | |
3969 (byte-compile-form form for-effect) | |
3970 (setq for-effect nil)) | |
3971 | |
3972 (byte-defop-compiler-1 inline byte-compile-progn) | |
3973 (byte-defop-compiler-1 progn) | |
3974 (byte-defop-compiler-1 prog1) | |
4677
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4639
diff
changeset
|
3975 (byte-defop-compiler-1 multiple-value-prog1) |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4639
diff
changeset
|
3976 (byte-defop-compiler-1 values) |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4639
diff
changeset
|
3977 (byte-defop-compiler-1 values-list) |
428 | 3978 (byte-defop-compiler-1 prog2) |
3979 (byte-defop-compiler-1 if) | |
3980 (byte-defop-compiler-1 cond) | |
3981 (byte-defop-compiler-1 and) | |
3982 (byte-defop-compiler-1 or) | |
3983 (byte-defop-compiler-1 while) | |
3984 (byte-defop-compiler-1 funcall) | |
3985 (byte-defop-compiler-1 apply byte-compile-funarg) | |
5182
2e528066e2fc
Move #'sort*, #'fill, #'merge to C from cl-seq.el.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5106
diff
changeset
|
3986 (byte-defop-compiler-1 mapcar byte-compile-mapcar) |
2e528066e2fc
Move #'sort*, #'fill, #'merge to C from cl-seq.el.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5106
diff
changeset
|
3987 (byte-defop-compiler-1 mapcar* byte-compile-maybe-mapc) |
428 | 3988 (byte-defop-compiler-1 mapatoms byte-compile-funarg) |
3989 (byte-defop-compiler-1 mapconcat byte-compile-funarg) | |
4743
776bbf454f3a
Be much more comprehensive in our use of byte-compile-funarg.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4719
diff
changeset
|
3990 (byte-defop-compiler-1 mapc byte-compile-funarg) |
776bbf454f3a
Be much more comprehensive in our use of byte-compile-funarg.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4719
diff
changeset
|
3991 (byte-defop-compiler-1 maphash byte-compile-funarg) |
776bbf454f3a
Be much more comprehensive in our use of byte-compile-funarg.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4719
diff
changeset
|
3992 (byte-defop-compiler-1 map-char-table byte-compile-funarg) |
776bbf454f3a
Be much more comprehensive in our use of byte-compile-funarg.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4719
diff
changeset
|
3993 (byte-defop-compiler-1 mapvector byte-compile-maybe-mapc) |
776bbf454f3a
Be much more comprehensive in our use of byte-compile-funarg.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4719
diff
changeset
|
3994 (byte-defop-compiler-1 mapc-internal byte-compile-funarg) |
4716
dca5bb2adff1
Don't cons with #'mapcar calls where the result is discarded,
Aidan Kehoe <kehoea@parhasard.net>
parents:
4686
diff
changeset
|
3995 (byte-defop-compiler-1 maplist byte-compile-maplist) |
dca5bb2adff1
Don't cons with #'mapcar calls where the result is discarded,
Aidan Kehoe <kehoea@parhasard.net>
parents:
4686
diff
changeset
|
3996 (byte-defop-compiler-1 mapl byte-compile-funarg) |
dca5bb2adff1
Don't cons with #'mapcar calls where the result is discarded,
Aidan Kehoe <kehoea@parhasard.net>
parents:
4686
diff
changeset
|
3997 (byte-defop-compiler-1 mapcan byte-compile-funarg) |
dca5bb2adff1
Don't cons with #'mapcar calls where the result is discarded,
Aidan Kehoe <kehoea@parhasard.net>
parents:
4686
diff
changeset
|
3998 (byte-defop-compiler-1 mapcon byte-compile-funarg) |
4719
bd51ab22afa8
Make it possible to silence warnings issued when #'mapcar's result is discarded.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4716
diff
changeset
|
3999 (byte-defop-compiler-1 map-database byte-compile-funarg) |
bd51ab22afa8
Make it possible to silence warnings issued when #'mapcar's result is discarded.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4716
diff
changeset
|
4000 (byte-defop-compiler-1 map-extent-children byte-compile-funarg) |
bd51ab22afa8
Make it possible to silence warnings issued when #'mapcar's result is discarded.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4716
diff
changeset
|
4001 (byte-defop-compiler-1 map-extents byte-compile-funarg) |
bd51ab22afa8
Make it possible to silence warnings issued when #'mapcar's result is discarded.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4716
diff
changeset
|
4002 (byte-defop-compiler-1 map-plist byte-compile-funarg) |
bd51ab22afa8
Make it possible to silence warnings issued when #'mapcar's result is discarded.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4716
diff
changeset
|
4003 (byte-defop-compiler-1 map-range-table byte-compile-funarg) |
bd51ab22afa8
Make it possible to silence warnings issued when #'mapcar's result is discarded.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4716
diff
changeset
|
4004 (byte-defop-compiler-1 map-syntax-table byte-compile-funarg) |
4743
776bbf454f3a
Be much more comprehensive in our use of byte-compile-funarg.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4719
diff
changeset
|
4005 |
776bbf454f3a
Be much more comprehensive in our use of byte-compile-funarg.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4719
diff
changeset
|
4006 (byte-defop-compiler-1 remove-if byte-compile-funarg) |
776bbf454f3a
Be much more comprehensive in our use of byte-compile-funarg.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4719
diff
changeset
|
4007 (byte-defop-compiler-1 remove-if-not byte-compile-funarg) |
776bbf454f3a
Be much more comprehensive in our use of byte-compile-funarg.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4719
diff
changeset
|
4008 (byte-defop-compiler-1 delete-if byte-compile-funarg) |
776bbf454f3a
Be much more comprehensive in our use of byte-compile-funarg.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4719
diff
changeset
|
4009 (byte-defop-compiler-1 delete-if-not byte-compile-funarg) |
776bbf454f3a
Be much more comprehensive in our use of byte-compile-funarg.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4719
diff
changeset
|
4010 (byte-defop-compiler-1 find-if byte-compile-funarg) |
776bbf454f3a
Be much more comprehensive in our use of byte-compile-funarg.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4719
diff
changeset
|
4011 (byte-defop-compiler-1 find-if-not byte-compile-funarg) |
776bbf454f3a
Be much more comprehensive in our use of byte-compile-funarg.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4719
diff
changeset
|
4012 (byte-defop-compiler-1 position-if byte-compile-funarg) |
776bbf454f3a
Be much more comprehensive in our use of byte-compile-funarg.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4719
diff
changeset
|
4013 (byte-defop-compiler-1 position-if-not byte-compile-funarg) |
776bbf454f3a
Be much more comprehensive in our use of byte-compile-funarg.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4719
diff
changeset
|
4014 (byte-defop-compiler-1 count-if byte-compile-funarg) |
776bbf454f3a
Be much more comprehensive in our use of byte-compile-funarg.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4719
diff
changeset
|
4015 (byte-defop-compiler-1 count-if-not byte-compile-funarg) |
776bbf454f3a
Be much more comprehensive in our use of byte-compile-funarg.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4719
diff
changeset
|
4016 (byte-defop-compiler-1 member-if byte-compile-funarg) |
776bbf454f3a
Be much more comprehensive in our use of byte-compile-funarg.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4719
diff
changeset
|
4017 (byte-defop-compiler-1 member-if-not byte-compile-funarg) |
776bbf454f3a
Be much more comprehensive in our use of byte-compile-funarg.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4719
diff
changeset
|
4018 (byte-defop-compiler-1 assoc-if byte-compile-funarg) |
776bbf454f3a
Be much more comprehensive in our use of byte-compile-funarg.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4719
diff
changeset
|
4019 (byte-defop-compiler-1 assoc-if-not byte-compile-funarg) |
776bbf454f3a
Be much more comprehensive in our use of byte-compile-funarg.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4719
diff
changeset
|
4020 (byte-defop-compiler-1 rassoc-if byte-compile-funarg) |
776bbf454f3a
Be much more comprehensive in our use of byte-compile-funarg.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4719
diff
changeset
|
4021 (byte-defop-compiler-1 rassoc-if-not byte-compile-funarg) |
776bbf454f3a
Be much more comprehensive in our use of byte-compile-funarg.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4719
diff
changeset
|
4022 (byte-defop-compiler-1 reduce byte-compile-funarg) |
776bbf454f3a
Be much more comprehensive in our use of byte-compile-funarg.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4719
diff
changeset
|
4023 (byte-defop-compiler-1 some byte-compile-funarg) |
776bbf454f3a
Be much more comprehensive in our use of byte-compile-funarg.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4719
diff
changeset
|
4024 (byte-defop-compiler-1 every byte-compile-funarg) |
776bbf454f3a
Be much more comprehensive in our use of byte-compile-funarg.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4719
diff
changeset
|
4025 (byte-defop-compiler-1 notany byte-compile-funarg) |
776bbf454f3a
Be much more comprehensive in our use of byte-compile-funarg.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4719
diff
changeset
|
4026 (byte-defop-compiler-1 notevery byte-compile-funarg) |
776bbf454f3a
Be much more comprehensive in our use of byte-compile-funarg.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4719
diff
changeset
|
4027 |
776bbf454f3a
Be much more comprehensive in our use of byte-compile-funarg.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4719
diff
changeset
|
4028 (byte-defop-compiler-1 walk-windows byte-compile-funarg) |
776bbf454f3a
Be much more comprehensive in our use of byte-compile-funarg.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4719
diff
changeset
|
4029 (byte-defop-compiler-1 get-window-with-predicate byte-compile-funarg) |
776bbf454f3a
Be much more comprehensive in our use of byte-compile-funarg.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4719
diff
changeset
|
4030 |
776bbf454f3a
Be much more comprehensive in our use of byte-compile-funarg.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4719
diff
changeset
|
4031 (byte-defop-compiler-1 map byte-compile-funarg-2) |
5182
2e528066e2fc
Move #'sort*, #'fill, #'merge to C from cl-seq.el.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5106
diff
changeset
|
4032 (byte-defop-compiler-1 map-into byte-compile-funarg-2) |
4743
776bbf454f3a
Be much more comprehensive in our use of byte-compile-funarg.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4719
diff
changeset
|
4033 (byte-defop-compiler-1 apropos-internal byte-compile-funarg-2) |
5182
2e528066e2fc
Move #'sort*, #'fill, #'merge to C from cl-seq.el.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5106
diff
changeset
|
4034 (byte-defop-compiler-1 sort byte-compile-sort) |
4743
776bbf454f3a
Be much more comprehensive in our use of byte-compile-funarg.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4719
diff
changeset
|
4035 (byte-defop-compiler-1 sort* byte-compile-funarg-2) |
776bbf454f3a
Be much more comprehensive in our use of byte-compile-funarg.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4719
diff
changeset
|
4036 (byte-defop-compiler-1 stable-sort byte-compile-funarg-2) |
776bbf454f3a
Be much more comprehensive in our use of byte-compile-funarg.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4719
diff
changeset
|
4037 (byte-defop-compiler-1 substitute-if byte-compile-funarg-2) |
776bbf454f3a
Be much more comprehensive in our use of byte-compile-funarg.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4719
diff
changeset
|
4038 (byte-defop-compiler-1 substitute-if-not byte-compile-funarg-2) |
776bbf454f3a
Be much more comprehensive in our use of byte-compile-funarg.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4719
diff
changeset
|
4039 (byte-defop-compiler-1 nsubstitute-if byte-compile-funarg-2) |
776bbf454f3a
Be much more comprehensive in our use of byte-compile-funarg.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4719
diff
changeset
|
4040 (byte-defop-compiler-1 nsubstitute-if-not byte-compile-funarg-2) |
776bbf454f3a
Be much more comprehensive in our use of byte-compile-funarg.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4719
diff
changeset
|
4041 (byte-defop-compiler-1 subst-if byte-compile-funarg-2) |
776bbf454f3a
Be much more comprehensive in our use of byte-compile-funarg.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4719
diff
changeset
|
4042 (byte-defop-compiler-1 subst-if-not byte-compile-funarg-2) |
776bbf454f3a
Be much more comprehensive in our use of byte-compile-funarg.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4719
diff
changeset
|
4043 (byte-defop-compiler-1 nsubst-if byte-compile-funarg-2) |
776bbf454f3a
Be much more comprehensive in our use of byte-compile-funarg.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4719
diff
changeset
|
4044 (byte-defop-compiler-1 nsubst-if-not byte-compile-funarg-2) |
776bbf454f3a
Be much more comprehensive in our use of byte-compile-funarg.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4719
diff
changeset
|
4045 |
776bbf454f3a
Be much more comprehensive in our use of byte-compile-funarg.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4719
diff
changeset
|
4046 (byte-defop-compiler-1 merge byte-compile-funarg-4) |
776bbf454f3a
Be much more comprehensive in our use of byte-compile-funarg.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4719
diff
changeset
|
4047 |
776bbf454f3a
Be much more comprehensive in our use of byte-compile-funarg.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4719
diff
changeset
|
4048 (byte-defop-compiler-1 call-with-condition-handler byte-compile-funarg-1-2) |
776bbf454f3a
Be much more comprehensive in our use of byte-compile-funarg.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4719
diff
changeset
|
4049 (byte-defop-compiler-1 mapcar-extents byte-compile-funarg-1-2) |
776bbf454f3a
Be much more comprehensive in our use of byte-compile-funarg.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4719
diff
changeset
|
4050 |
428 | 4051 (byte-defop-compiler-1 let) |
4052 (byte-defop-compiler-1 let*) | |
4053 | |
4885
6772ce4d982b
Fix hash tables, #'member*, #'assoc*, #'eql compiler macros if bignums
Aidan Kehoe <kehoea@parhasard.net>
parents:
4783
diff
changeset
|
4054 (byte-defop-compiler-1 integerp) |
5301
ec05a30f7148
Fix a bytecomp.el bug compiling #'eql, which was masked by cl-macs.el
Aidan Kehoe <kehoea@parhasard.net>
parents:
5294
diff
changeset
|
4055 (byte-defop-compiler-1 eql) |
5182
2e528066e2fc
Move #'sort*, #'fill, #'merge to C from cl-seq.el.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5106
diff
changeset
|
4056 (byte-defop-compiler-1 fillarray) |
4885
6772ce4d982b
Fix hash tables, #'member*, #'assoc*, #'eql compiler macros if bignums
Aidan Kehoe <kehoea@parhasard.net>
parents:
4783
diff
changeset
|
4057 |
428 | 4058 (defun byte-compile-progn (form) |
4059 (byte-compile-body-do-effect (cdr form))) | |
4060 | |
4061 (defun byte-compile-prog1 (form) | |
4062 (setq form (cdr form)) | |
4677
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4639
diff
changeset
|
4063 ;; #'prog1 never returns multiple values: |
4686
cdabd56ce1b5
Fix various small issues with the multiple-value implementation.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4683
diff
changeset
|
4064 (byte-compile-form-do-effect `(or ,(pop form) nil)) |
4677
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4639
diff
changeset
|
4065 (byte-compile-body form t)) |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4639
diff
changeset
|
4066 |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4639
diff
changeset
|
4067 (defun byte-compile-multiple-value-prog1 (form) |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4639
diff
changeset
|
4068 (setq form (cdr form)) |
428 | 4069 (byte-compile-form-do-effect (pop form)) |
4070 (byte-compile-body form t)) | |
4071 | |
4677
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4639
diff
changeset
|
4072 (defun byte-compile-values (form) |
5366
f00192e1cd49
Examining the result of #'length: `eql', not `=', it's better style & cheaper
Aidan Kehoe <kehoea@parhasard.net>
parents:
5358
diff
changeset
|
4073 (if (eql 2 (length form)) |
4686
cdabd56ce1b5
Fix various small issues with the multiple-value implementation.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4683
diff
changeset
|
4074 (if (byte-compile-constp (second form)) |
cdabd56ce1b5
Fix various small issues with the multiple-value implementation.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4683
diff
changeset
|
4075 (byte-compile-form-do-effect (second form)) |
cdabd56ce1b5
Fix various small issues with the multiple-value implementation.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4683
diff
changeset
|
4076 ;; #'or compiles to bytecode, #'values doesn't: |
cdabd56ce1b5
Fix various small issues with the multiple-value implementation.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4683
diff
changeset
|
4077 (byte-compile-form-do-effect `(or ,(second form) nil))) |
4677
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4639
diff
changeset
|
4078 (byte-compile-normal-call form))) |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4639
diff
changeset
|
4079 |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4639
diff
changeset
|
4080 (defun byte-compile-values-list (form) |
5366
f00192e1cd49
Examining the result of #'length: `eql', not `=', it's better style & cheaper
Aidan Kehoe <kehoea@parhasard.net>
parents:
5358
diff
changeset
|
4081 (if (and (eql 2 (length form)) |
4677
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4639
diff
changeset
|
4082 (or (null (second form)) |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4639
diff
changeset
|
4083 (and (consp (second form)) |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4639
diff
changeset
|
4084 (eq (car (second form)) |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4639
diff
changeset
|
4085 'quote) |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4639
diff
changeset
|
4086 (not (symbolp (car-safe (cdr (second form)))))))) |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4639
diff
changeset
|
4087 (byte-compile-form-do-effect (car-safe (cdr (second form)))) |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4639
diff
changeset
|
4088 (byte-compile-normal-call form))) |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4639
diff
changeset
|
4089 |
428 | 4090 (defun byte-compile-prog2 (form) |
4091 (setq form (cdr form)) | |
4092 (byte-compile-form (pop form) t) | |
4677
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4639
diff
changeset
|
4093 ;; #'prog2 never returns multiple values: |
4686
cdabd56ce1b5
Fix various small issues with the multiple-value implementation.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4683
diff
changeset
|
4094 (byte-compile-form-do-effect `(or ,(pop form) nil)) |
428 | 4095 (byte-compile-body form t)) |
4096 | |
4097 (defmacro byte-compile-goto-if (cond discard tag) | |
4098 `(byte-compile-goto | |
4099 (if ,cond | |
4100 (if ,discard 'byte-goto-if-not-nil 'byte-goto-if-not-nil-else-pop) | |
4101 (if ,discard 'byte-goto-if-nil 'byte-goto-if-nil-else-pop)) | |
4102 ,tag)) | |
4103 | |
4104 (defun byte-compile-if (form) | |
4105 (byte-compile-form (car (cdr form))) | |
4106 (if (null (nthcdr 3 form)) | |
4107 ;; No else-forms | |
4108 (let ((donetag (byte-compile-make-tag))) | |
4109 (byte-compile-goto-if nil for-effect donetag) | |
4110 (byte-compile-form (nth 2 form) for-effect) | |
4111 (byte-compile-out-tag donetag)) | |
4112 (let ((donetag (byte-compile-make-tag)) (elsetag (byte-compile-make-tag))) | |
4113 (byte-compile-goto 'byte-goto-if-nil elsetag) | |
4114 (byte-compile-form (nth 2 form) for-effect) | |
4115 (byte-compile-goto 'byte-goto donetag) | |
4116 (byte-compile-out-tag elsetag) | |
4117 (byte-compile-body (cdr (cdr (cdr form))) for-effect) | |
4118 (byte-compile-out-tag donetag))) | |
4119 (setq for-effect nil)) | |
4120 | |
4121 (defun byte-compile-cond (clauses) | |
4122 (let ((donetag (byte-compile-make-tag)) | |
4123 nexttag clause) | |
4124 (while (setq clauses (cdr clauses)) | |
4125 (setq clause (car clauses)) | |
4126 (cond ((or (eq (car clause) t) | |
4127 (and (eq (car-safe (car clause)) 'quote) | |
4128 (car-safe (cdr-safe (car clause))))) | |
4129 ;; Unconditional clause | |
4130 (setq clause (cons t clause) | |
4131 clauses nil)) | |
4132 ((cdr clauses) | |
4133 (byte-compile-form (car clause)) | |
4134 (if (null (cdr clause)) | |
4135 ;; First clause is a singleton. | |
4136 (byte-compile-goto-if t for-effect donetag) | |
4137 (setq nexttag (byte-compile-make-tag)) | |
4138 (byte-compile-goto 'byte-goto-if-nil nexttag) | |
4139 (byte-compile-body (cdr clause) for-effect) | |
4140 (byte-compile-goto 'byte-goto donetag) | |
4141 (byte-compile-out-tag nexttag))))) | |
4142 ;; Last clause | |
4143 (and (cdr clause) (not (eq (car clause) t)) | |
4144 (progn (byte-compile-form (car clause)) | |
4145 (byte-compile-goto-if nil for-effect donetag) | |
4146 (setq clause (cdr clause)))) | |
4147 (byte-compile-body-do-effect clause) | |
4148 (byte-compile-out-tag donetag))) | |
4149 | |
4150 (defun byte-compile-and (form) | |
4151 (let ((failtag (byte-compile-make-tag)) | |
4152 (args (cdr form))) | |
4153 (if (null args) | |
4154 (byte-compile-form-do-effect t) | |
4155 (while (cdr args) | |
4156 (byte-compile-form (car args)) | |
4157 (byte-compile-goto-if nil for-effect failtag) | |
4158 (setq args (cdr args))) | |
4159 (byte-compile-form-do-effect (car args)) | |
4160 (byte-compile-out-tag failtag)))) | |
4161 | |
4162 (defun byte-compile-or (form) | |
4163 (let ((wintag (byte-compile-make-tag)) | |
4164 (args (cdr form))) | |
4165 (if (null args) | |
4166 (byte-compile-form-do-effect nil) | |
4167 (while (cdr args) | |
4168 (byte-compile-form (car args)) | |
4169 (byte-compile-goto-if t for-effect wintag) | |
4170 (setq args (cdr args))) | |
4171 (byte-compile-form-do-effect (car args)) | |
4172 (byte-compile-out-tag wintag)))) | |
4173 | |
4174 (defun byte-compile-while (form) | |
4175 (let ((endtag (byte-compile-make-tag)) | |
4176 (looptag (byte-compile-make-tag))) | |
4177 (byte-compile-out-tag looptag) | |
4178 (byte-compile-form (car (cdr form))) | |
4179 (byte-compile-goto-if nil for-effect endtag) | |
4180 (byte-compile-body (cdr (cdr form)) t) | |
4181 (byte-compile-goto 'byte-goto looptag) | |
4182 (byte-compile-out-tag endtag) | |
4183 (setq for-effect nil))) | |
4184 | |
4185 (defun byte-compile-funcall (form) | |
5566
4654c01af32b
Improve the implementation, documentation of #'labels, #'flet.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5562
diff
changeset
|
4186 (if (and (memq 'callargs byte-compile-warnings) |
4654c01af32b
Improve the implementation, documentation of #'labels, #'flet.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5562
diff
changeset
|
4187 (byte-compile-constp (second form))) |
4654c01af32b
Improve the implementation, documentation of #'labels, #'flet.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5562
diff
changeset
|
4188 (byte-compile-callargs-warn (cons (cl-const-expr-val (second form)) |
4654c01af32b
Improve the implementation, documentation of #'labels, #'flet.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5562
diff
changeset
|
4189 (nthcdr 2 form)))) |
5575
89cb6a66a61f
Force unfolding of (funcall #'(lambda () ...) if optimising, bytecomp.el.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5574
diff
changeset
|
4190 (if (and byte-optimize |
89cb6a66a61f
Force unfolding of (funcall #'(lambda () ...) if optimising, bytecomp.el.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5574
diff
changeset
|
4191 (eq 'function (car-safe (cadr form))) |
89cb6a66a61f
Force unfolding of (funcall #'(lambda () ...) if optimising, bytecomp.el.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5574
diff
changeset
|
4192 (eq 'lambda (car-safe (cadadr form))) |
89cb6a66a61f
Force unfolding of (funcall #'(lambda () ...) if optimising, bytecomp.el.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5574
diff
changeset
|
4193 (or |
89cb6a66a61f
Force unfolding of (funcall #'(lambda () ...) if optimising, bytecomp.el.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5574
diff
changeset
|
4194 (not (eq (setq form (cons (cadadr form) (cddr form))) |
89cb6a66a61f
Force unfolding of (funcall #'(lambda () ...) if optimising, bytecomp.el.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5574
diff
changeset
|
4195 (setq form (byte-compile-unfold-lambda form)))) |
89cb6a66a61f
Force unfolding of (funcall #'(lambda () ...) if optimising, bytecomp.el.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5574
diff
changeset
|
4196 (prog1 nil (setq form `(funcall #',(car form) ,@(cdr form)))))) |
5577
0b6e7ae1e78f
Update a comment with a better understanding of the optimizer, bytecomp.el
Aidan Kehoe <kehoea@parhasard.net>
parents:
5575
diff
changeset
|
4197 ;; The byte-compile part of the #'labels implementation, above, |
0b6e7ae1e78f
Update a comment with a better understanding of the optimizer, bytecomp.el
Aidan Kehoe <kehoea@parhasard.net>
parents:
5575
diff
changeset
|
4198 ;; happens after macroexpansion and after the source optimizer has |
0b6e7ae1e78f
Update a comment with a better understanding of the optimizer, bytecomp.el
Aidan Kehoe <kehoea@parhasard.net>
parents:
5575
diff
changeset
|
4199 ;; done its thing. When labels are to be made inline we can have code |
0b6e7ae1e78f
Update a comment with a better understanding of the optimizer, bytecomp.el
Aidan Kehoe <kehoea@parhasard.net>
parents:
5575
diff
changeset
|
4200 ;; that looks like (funcall #'(lambda ...) ...), when the code that |
0b6e7ae1e78f
Update a comment with a better understanding of the optimizer, bytecomp.el
Aidan Kehoe <kehoea@parhasard.net>
parents:
5575
diff
changeset
|
4201 ;; the optimizer saw looked like (funcall #<compiled-function ...> |
0b6e7ae1e78f
Update a comment with a better understanding of the optimizer, bytecomp.el
Aidan Kehoe <kehoea@parhasard.net>
parents:
5575
diff
changeset
|
4202 ;; ...). |
0b6e7ae1e78f
Update a comment with a better understanding of the optimizer, bytecomp.el
Aidan Kehoe <kehoea@parhasard.net>
parents:
5575
diff
changeset
|
4203 ;; |
0b6e7ae1e78f
Update a comment with a better understanding of the optimizer, bytecomp.el
Aidan Kehoe <kehoea@parhasard.net>
parents:
5575
diff
changeset
|
4204 ;; So, the optimizer doesn't have the opportunity to transform the |
0b6e7ae1e78f
Update a comment with a better understanding of the optimizer, bytecomp.el
Aidan Kehoe <kehoea@parhasard.net>
parents:
5575
diff
changeset
|
4205 ;; former to (let (...) ...), and it's reasonable to do that here (since |
0b6e7ae1e78f
Update a comment with a better understanding of the optimizer, bytecomp.el
Aidan Kehoe <kehoea@parhasard.net>
parents:
5575
diff
changeset
|
4206 ;; the labels implementation doesn't change other code that would need |
0b6e7ae1e78f
Update a comment with a better understanding of the optimizer, bytecomp.el
Aidan Kehoe <kehoea@parhasard.net>
parents:
5575
diff
changeset
|
4207 ;; running through the optimizer; the lambda itself has already been |
0b6e7ae1e78f
Update a comment with a better understanding of the optimizer, bytecomp.el
Aidan Kehoe <kehoea@parhasard.net>
parents:
5575
diff
changeset
|
4208 ;; through the optimizer). |
0b6e7ae1e78f
Update a comment with a better understanding of the optimizer, bytecomp.el
Aidan Kehoe <kehoea@parhasard.net>
parents:
5575
diff
changeset
|
4209 ;; |
0b6e7ae1e78f
Update a comment with a better understanding of the optimizer, bytecomp.el
Aidan Kehoe <kehoea@parhasard.net>
parents:
5575
diff
changeset
|
4210 ;; Equally reasonable, and conceptually a bit clearer, would be to do |
0b6e7ae1e78f
Update a comment with a better understanding of the optimizer, bytecomp.el
Aidan Kehoe <kehoea@parhasard.net>
parents:
5575
diff
changeset
|
4211 ;; the transformation to (funcall #'(lambda ...) ...) in the |
0b6e7ae1e78f
Update a comment with a better understanding of the optimizer, bytecomp.el
Aidan Kehoe <kehoea@parhasard.net>
parents:
5575
diff
changeset
|
4212 ;; byte-optimizer, breaking most of the #'sublis calls out of the |
0b6e7ae1e78f
Update a comment with a better understanding of the optimizer, bytecomp.el
Aidan Kehoe <kehoea@parhasard.net>
parents:
5575
diff
changeset
|
4213 ;; byte-compile method. |
5575
89cb6a66a61f
Force unfolding of (funcall #'(lambda () ...) if optimising, bytecomp.el.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5574
diff
changeset
|
4214 (byte-compile-form form) |
89cb6a66a61f
Force unfolding of (funcall #'(lambda () ...) if optimising, bytecomp.el.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5574
diff
changeset
|
4215 (mapc 'byte-compile-form (cdr form)) |
89cb6a66a61f
Force unfolding of (funcall #'(lambda () ...) if optimising, bytecomp.el.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5574
diff
changeset
|
4216 (byte-compile-out 'byte-call (length (cdr (cdr form)))))) |
428 | 4217 |
4218 | |
4219 (defun byte-compile-let (form) | |
4220 ;; First compute the binding values in the old scope. | |
4221 (let ((varlist (car (cdr form)))) | |
4222 (while varlist | |
4223 (if (consp (car varlist)) | |
4224 (byte-compile-form (car (cdr (car varlist)))) | |
4225 (byte-compile-push-constant nil)) | |
4226 (setq varlist (cdr varlist)))) | |
4227 (let ((byte-compile-bound-variables | |
4228 (cons 'new-scope byte-compile-bound-variables)) | |
4229 (varlist (reverse (car (cdr form)))) | |
4230 (extra-flags | |
4231 ;; If this let is of the form (let (...) (byte-code ...)) | |
4232 ;; then assume that it is the result of a transformation of | |
4233 ;; ((lambda (...) (byte-code ... )) ...) and thus compile | |
4234 ;; the variable bindings as if they were arglist bindings | |
4235 ;; (which matters for what warnings.) | |
4236 (if (eq 'byte-code (car-safe (nth 2 form))) | |
4237 byte-compile-arglist-bit | |
4238 nil))) | |
4239 (while varlist | |
4240 (byte-compile-variable-ref 'byte-varbind | |
4241 (if (consp (car varlist)) | |
4242 (car (car varlist)) | |
4243 (car varlist)) | |
4244 extra-flags) | |
4245 (setq varlist (cdr varlist))) | |
4246 (byte-compile-body-do-effect (cdr (cdr form))) | |
4247 (if (memq 'unused-vars byte-compile-warnings) | |
4248 ;; done compiling in this scope, warn now. | |
4249 (byte-compile-warn-about-unused-variables)) | |
4250 (byte-compile-out 'byte-unbind (length (car (cdr form)))))) | |
4251 | |
4252 (defun byte-compile-let* (form) | |
4253 (let ((byte-compile-bound-variables | |
4254 (cons 'new-scope byte-compile-bound-variables)) | |
4255 (varlist (copy-sequence (car (cdr form))))) | |
4256 (while varlist | |
4257 (if (atom (car varlist)) | |
4258 (byte-compile-push-constant nil) | |
4259 (byte-compile-form (car (cdr (car varlist)))) | |
4260 (setcar varlist (car (car varlist)))) | |
4261 (byte-compile-variable-ref 'byte-varbind (car varlist)) | |
4262 (setq varlist (cdr varlist))) | |
4263 (byte-compile-body-do-effect (cdr (cdr form))) | |
4264 (if (memq 'unused-vars byte-compile-warnings) | |
4265 ;; done compiling in this scope, warn now. | |
4266 (byte-compile-warn-about-unused-variables)) | |
4267 (byte-compile-out 'byte-unbind (length (car (cdr form)))))) | |
4268 | |
4885
6772ce4d982b
Fix hash tables, #'member*, #'assoc*, #'eql compiler macros if bignums
Aidan Kehoe <kehoea@parhasard.net>
parents:
4783
diff
changeset
|
4269 ;; We've renamed the integerp bytecode to fixnump, and changed its semantics |
6772ce4d982b
Fix hash tables, #'member*, #'assoc*, #'eql compiler macros if bignums
Aidan Kehoe <kehoea@parhasard.net>
parents:
4783
diff
changeset
|
4270 ;; accordingly. This means #'integerp itself can't be as fast as it used to |
6772ce4d982b
Fix hash tables, #'member*, #'assoc*, #'eql compiler macros if bignums
Aidan Kehoe <kehoea@parhasard.net>
parents:
4783
diff
changeset
|
4271 ;; be, since it no longer has a bytecode to itself. As it happens, though, |
6772ce4d982b
Fix hash tables, #'member*, #'assoc*, #'eql compiler macros if bignums
Aidan Kehoe <kehoea@parhasard.net>
parents:
4783
diff
changeset
|
4272 ;; most of the non-core calls to #'integerp are in contexts where it is |
6772ce4d982b
Fix hash tables, #'member*, #'assoc*, #'eql compiler macros if bignums
Aidan Kehoe <kehoea@parhasard.net>
parents:
4783
diff
changeset
|
4273 ;; either going to receive a fixnum, or something non-numeric entirely; the |
6772ce4d982b
Fix hash tables, #'member*, #'assoc*, #'eql compiler macros if bignums
Aidan Kehoe <kehoea@parhasard.net>
parents:
4783
diff
changeset
|
4274 ;; contexts where it needs to distinguish between an integer and a float are |
6772ce4d982b
Fix hash tables, #'member*, #'assoc*, #'eql compiler macros if bignums
Aidan Kehoe <kehoea@parhasard.net>
parents:
4783
diff
changeset
|
4275 ;; very rare. So, we can have (integerp X) compile to: |
6772ce4d982b
Fix hash tables, #'member*, #'assoc*, #'eql compiler macros if bignums
Aidan Kehoe <kehoea@parhasard.net>
parents:
4783
diff
changeset
|
4276 ;; |
6772ce4d982b
Fix hash tables, #'member*, #'assoc*, #'eql compiler macros if bignums
Aidan Kehoe <kehoea@parhasard.net>
parents:
4783
diff
changeset
|
4277 ;; (or (fixnump X) (and (numberp X) (funcall #'integerp X))) |
6772ce4d982b
Fix hash tables, #'member*, #'assoc*, #'eql compiler macros if bignums
Aidan Kehoe <kehoea@parhasard.net>
parents:
4783
diff
changeset
|
4278 ;; |
6772ce4d982b
Fix hash tables, #'member*, #'assoc*, #'eql compiler macros if bignums
Aidan Kehoe <kehoea@parhasard.net>
parents:
4783
diff
changeset
|
4279 ;; without the multiple evaluation of X, and where #'fixnump and #'numberp |
6772ce4d982b
Fix hash tables, #'member*, #'assoc*, #'eql compiler macros if bignums
Aidan Kehoe <kehoea@parhasard.net>
parents:
4783
diff
changeset
|
4280 ;; both have bytecodes. We ignore for-effect, because byte-optimize.el will |
6772ce4d982b
Fix hash tables, #'member*, #'assoc*, #'eql compiler macros if bignums
Aidan Kehoe <kehoea@parhasard.net>
parents:
4783
diff
changeset
|
4281 ;; delete this call in its presence. |
6772ce4d982b
Fix hash tables, #'member*, #'assoc*, #'eql compiler macros if bignums
Aidan Kehoe <kehoea@parhasard.net>
parents:
4783
diff
changeset
|
4282 ;; |
6772ce4d982b
Fix hash tables, #'member*, #'assoc*, #'eql compiler macros if bignums
Aidan Kehoe <kehoea@parhasard.net>
parents:
4783
diff
changeset
|
4283 ;; This approach is byte-code compatible with 21.4 and with earlier 21.5 |
6772ce4d982b
Fix hash tables, #'member*, #'assoc*, #'eql compiler macros if bignums
Aidan Kehoe <kehoea@parhasard.net>
parents:
4783
diff
changeset
|
4284 ;; (except that earlier 21.5 with bignum support will confuse Bfixnump and |
6772ce4d982b
Fix hash tables, #'member*, #'assoc*, #'eql compiler macros if bignums
Aidan Kehoe <kehoea@parhasard.net>
parents:
4783
diff
changeset
|
4285 ;; Bintegerp; which it did in dealing with byte-compiled code from 21.4 |
6772ce4d982b
Fix hash tables, #'member*, #'assoc*, #'eql compiler macros if bignums
Aidan Kehoe <kehoea@parhasard.net>
parents:
4783
diff
changeset
|
4286 ;; anyway). |
6772ce4d982b
Fix hash tables, #'member*, #'assoc*, #'eql compiler macros if bignums
Aidan Kehoe <kehoea@parhasard.net>
parents:
4783
diff
changeset
|
4287 |
6772ce4d982b
Fix hash tables, #'member*, #'assoc*, #'eql compiler macros if bignums
Aidan Kehoe <kehoea@parhasard.net>
parents:
4783
diff
changeset
|
4288 (defun byte-compile-integerp (form) |
5366
f00192e1cd49
Examining the result of #'length: `eql', not `=', it's better style & cheaper
Aidan Kehoe <kehoea@parhasard.net>
parents:
5358
diff
changeset
|
4289 (if (not (eql (length form) 2)) |
4885
6772ce4d982b
Fix hash tables, #'member*, #'assoc*, #'eql compiler macros if bignums
Aidan Kehoe <kehoea@parhasard.net>
parents:
4783
diff
changeset
|
4290 (byte-compile-subr-wrong-args form 1) |
6772ce4d982b
Fix hash tables, #'member*, #'assoc*, #'eql compiler macros if bignums
Aidan Kehoe <kehoea@parhasard.net>
parents:
4783
diff
changeset
|
4291 (let ((donetag (byte-compile-make-tag)) |
6772ce4d982b
Fix hash tables, #'member*, #'assoc*, #'eql compiler macros if bignums
Aidan Kehoe <kehoea@parhasard.net>
parents:
4783
diff
changeset
|
4292 (wintag (byte-compile-make-tag)) |
6772ce4d982b
Fix hash tables, #'member*, #'assoc*, #'eql compiler macros if bignums
Aidan Kehoe <kehoea@parhasard.net>
parents:
4783
diff
changeset
|
4293 (failtag (byte-compile-make-tag))) |
6772ce4d982b
Fix hash tables, #'member*, #'assoc*, #'eql compiler macros if bignums
Aidan Kehoe <kehoea@parhasard.net>
parents:
4783
diff
changeset
|
4294 (byte-compile-constant 'integerp) |
6772ce4d982b
Fix hash tables, #'member*, #'assoc*, #'eql compiler macros if bignums
Aidan Kehoe <kehoea@parhasard.net>
parents:
4783
diff
changeset
|
4295 (byte-compile-form (second form)) |
6772ce4d982b
Fix hash tables, #'member*, #'assoc*, #'eql compiler macros if bignums
Aidan Kehoe <kehoea@parhasard.net>
parents:
4783
diff
changeset
|
4296 (byte-compile-out 'byte-dup 0) |
6772ce4d982b
Fix hash tables, #'member*, #'assoc*, #'eql compiler macros if bignums
Aidan Kehoe <kehoea@parhasard.net>
parents:
4783
diff
changeset
|
4297 (byte-compile-out 'byte-fixnump 0) |
6772ce4d982b
Fix hash tables, #'member*, #'assoc*, #'eql compiler macros if bignums
Aidan Kehoe <kehoea@parhasard.net>
parents:
4783
diff
changeset
|
4298 (byte-compile-goto 'byte-goto-if-not-nil wintag) |
6772ce4d982b
Fix hash tables, #'member*, #'assoc*, #'eql compiler macros if bignums
Aidan Kehoe <kehoea@parhasard.net>
parents:
4783
diff
changeset
|
4299 (byte-compile-out 'byte-dup 0) |
6772ce4d982b
Fix hash tables, #'member*, #'assoc*, #'eql compiler macros if bignums
Aidan Kehoe <kehoea@parhasard.net>
parents:
4783
diff
changeset
|
4300 (byte-compile-out 'byte-numberp 0) |
6772ce4d982b
Fix hash tables, #'member*, #'assoc*, #'eql compiler macros if bignums
Aidan Kehoe <kehoea@parhasard.net>
parents:
4783
diff
changeset
|
4301 (byte-compile-goto 'byte-goto-if-nil failtag) |
6772ce4d982b
Fix hash tables, #'member*, #'assoc*, #'eql compiler macros if bignums
Aidan Kehoe <kehoea@parhasard.net>
parents:
4783
diff
changeset
|
4302 (byte-compile-out 'byte-call 1) |
6772ce4d982b
Fix hash tables, #'member*, #'assoc*, #'eql compiler macros if bignums
Aidan Kehoe <kehoea@parhasard.net>
parents:
4783
diff
changeset
|
4303 ;; At this point, the only thing from this function remaining on the |
6772ce4d982b
Fix hash tables, #'member*, #'assoc*, #'eql compiler macros if bignums
Aidan Kehoe <kehoea@parhasard.net>
parents:
4783
diff
changeset
|
4304 ;; stack is the return value of the called #'integerp, which reflects |
6772ce4d982b
Fix hash tables, #'member*, #'assoc*, #'eql compiler macros if bignums
Aidan Kehoe <kehoea@parhasard.net>
parents:
4783
diff
changeset
|
4305 ;; exactly what we want. Go directly to donetag, do not discard |
6772ce4d982b
Fix hash tables, #'member*, #'assoc*, #'eql compiler macros if bignums
Aidan Kehoe <kehoea@parhasard.net>
parents:
4783
diff
changeset
|
4306 ;; anything. |
6772ce4d982b
Fix hash tables, #'member*, #'assoc*, #'eql compiler macros if bignums
Aidan Kehoe <kehoea@parhasard.net>
parents:
4783
diff
changeset
|
4307 (byte-compile-goto 'byte-goto donetag) |
6772ce4d982b
Fix hash tables, #'member*, #'assoc*, #'eql compiler macros if bignums
Aidan Kehoe <kehoea@parhasard.net>
parents:
4783
diff
changeset
|
4308 (byte-compile-out-tag failtag) |
6772ce4d982b
Fix hash tables, #'member*, #'assoc*, #'eql compiler macros if bignums
Aidan Kehoe <kehoea@parhasard.net>
parents:
4783
diff
changeset
|
4309 (byte-compile-discard) |
6772ce4d982b
Fix hash tables, #'member*, #'assoc*, #'eql compiler macros if bignums
Aidan Kehoe <kehoea@parhasard.net>
parents:
4783
diff
changeset
|
4310 (byte-compile-discard) |
6772ce4d982b
Fix hash tables, #'member*, #'assoc*, #'eql compiler macros if bignums
Aidan Kehoe <kehoea@parhasard.net>
parents:
4783
diff
changeset
|
4311 (byte-compile-constant nil) |
6772ce4d982b
Fix hash tables, #'member*, #'assoc*, #'eql compiler macros if bignums
Aidan Kehoe <kehoea@parhasard.net>
parents:
4783
diff
changeset
|
4312 (byte-compile-goto 'byte-goto donetag) |
6772ce4d982b
Fix hash tables, #'member*, #'assoc*, #'eql compiler macros if bignums
Aidan Kehoe <kehoea@parhasard.net>
parents:
4783
diff
changeset
|
4313 (byte-compile-out-tag wintag) |
6772ce4d982b
Fix hash tables, #'member*, #'assoc*, #'eql compiler macros if bignums
Aidan Kehoe <kehoea@parhasard.net>
parents:
4783
diff
changeset
|
4314 (byte-compile-discard) |
6772ce4d982b
Fix hash tables, #'member*, #'assoc*, #'eql compiler macros if bignums
Aidan Kehoe <kehoea@parhasard.net>
parents:
4783
diff
changeset
|
4315 (byte-compile-discard) |
6772ce4d982b
Fix hash tables, #'member*, #'assoc*, #'eql compiler macros if bignums
Aidan Kehoe <kehoea@parhasard.net>
parents:
4783
diff
changeset
|
4316 (byte-compile-constant t) |
6772ce4d982b
Fix hash tables, #'member*, #'assoc*, #'eql compiler macros if bignums
Aidan Kehoe <kehoea@parhasard.net>
parents:
4783
diff
changeset
|
4317 (byte-compile-out-tag donetag)))) |
428 | 4318 |
5301
ec05a30f7148
Fix a bytecomp.el bug compiling #'eql, which was masked by cl-macs.el
Aidan Kehoe <kehoea@parhasard.net>
parents:
5294
diff
changeset
|
4319 (defun byte-compile-eql (form) |
ec05a30f7148
Fix a bytecomp.el bug compiling #'eql, which was masked by cl-macs.el
Aidan Kehoe <kehoea@parhasard.net>
parents:
5294
diff
changeset
|
4320 (if (eql 3 (length form)) |
ec05a30f7148
Fix a bytecomp.el bug compiling #'eql, which was masked by cl-macs.el
Aidan Kehoe <kehoea@parhasard.net>
parents:
5294
diff
changeset
|
4321 (let ((donetag (byte-compile-make-tag)) |
ec05a30f7148
Fix a bytecomp.el bug compiling #'eql, which was masked by cl-macs.el
Aidan Kehoe <kehoea@parhasard.net>
parents:
5294
diff
changeset
|
4322 (eqtag (byte-compile-make-tag))) |
ec05a30f7148
Fix a bytecomp.el bug compiling #'eql, which was masked by cl-macs.el
Aidan Kehoe <kehoea@parhasard.net>
parents:
5294
diff
changeset
|
4323 (mapc 'byte-compile-form (cdr form)) |
ec05a30f7148
Fix a bytecomp.el bug compiling #'eql, which was masked by cl-macs.el
Aidan Kehoe <kehoea@parhasard.net>
parents:
5294
diff
changeset
|
4324 (byte-compile-out 'byte-dup 0) |
ec05a30f7148
Fix a bytecomp.el bug compiling #'eql, which was masked by cl-macs.el
Aidan Kehoe <kehoea@parhasard.net>
parents:
5294
diff
changeset
|
4325 (byte-compile-out 'byte-numberp 0) |
ec05a30f7148
Fix a bytecomp.el bug compiling #'eql, which was masked by cl-macs.el
Aidan Kehoe <kehoea@parhasard.net>
parents:
5294
diff
changeset
|
4326 (byte-compile-goto 'byte-goto-if-nil eqtag) |
ec05a30f7148
Fix a bytecomp.el bug compiling #'eql, which was masked by cl-macs.el
Aidan Kehoe <kehoea@parhasard.net>
parents:
5294
diff
changeset
|
4327 (byte-compile-out 'byte-dup 0) |
ec05a30f7148
Fix a bytecomp.el bug compiling #'eql, which was masked by cl-macs.el
Aidan Kehoe <kehoea@parhasard.net>
parents:
5294
diff
changeset
|
4328 (byte-compile-out 'byte-fixnump 0) |
ec05a30f7148
Fix a bytecomp.el bug compiling #'eql, which was masked by cl-macs.el
Aidan Kehoe <kehoea@parhasard.net>
parents:
5294
diff
changeset
|
4329 (byte-compile-goto 'byte-goto-if-not-nil eqtag) |
ec05a30f7148
Fix a bytecomp.el bug compiling #'eql, which was masked by cl-macs.el
Aidan Kehoe <kehoea@parhasard.net>
parents:
5294
diff
changeset
|
4330 (byte-compile-out 'byte-equal 0) |
ec05a30f7148
Fix a bytecomp.el bug compiling #'eql, which was masked by cl-macs.el
Aidan Kehoe <kehoea@parhasard.net>
parents:
5294
diff
changeset
|
4331 (byte-compile-goto 'byte-goto donetag) |
ec05a30f7148
Fix a bytecomp.el bug compiling #'eql, which was masked by cl-macs.el
Aidan Kehoe <kehoea@parhasard.net>
parents:
5294
diff
changeset
|
4332 (byte-compile-out-tag eqtag) |
ec05a30f7148
Fix a bytecomp.el bug compiling #'eql, which was masked by cl-macs.el
Aidan Kehoe <kehoea@parhasard.net>
parents:
5294
diff
changeset
|
4333 (byte-compile-out 'byte-eq 0) |
ec05a30f7148
Fix a bytecomp.el bug compiling #'eql, which was masked by cl-macs.el
Aidan Kehoe <kehoea@parhasard.net>
parents:
5294
diff
changeset
|
4334 (byte-compile-out-tag donetag)) |
ec05a30f7148
Fix a bytecomp.el bug compiling #'eql, which was masked by cl-macs.el
Aidan Kehoe <kehoea@parhasard.net>
parents:
5294
diff
changeset
|
4335 (byte-compile-subr-wrong-args form 2))) |
ec05a30f7148
Fix a bytecomp.el bug compiling #'eql, which was masked by cl-macs.el
Aidan Kehoe <kehoea@parhasard.net>
parents:
5294
diff
changeset
|
4336 |
428 | 4337 ;;(byte-defop-compiler-1 /= byte-compile-negated) |
4338 (byte-defop-compiler-1 atom byte-compile-negated) | |
4339 (byte-defop-compiler-1 nlistp byte-compile-negated) | |
4340 | |
4341 ;;(put '/= 'byte-compile-negated-op '=) | |
4342 (put 'atom 'byte-compile-negated-op 'consp) | |
4343 (put 'nlistp 'byte-compile-negated-op 'listp) | |
4344 | |
4345 (defun byte-compile-negated (form) | |
4346 (byte-compile-form-do-effect (byte-compile-negation-optimizer form))) | |
4347 | |
4348 ;; Even when optimization is off, atom is optimized to (not (consp ...)). | |
4349 (defun byte-compile-negation-optimizer (form) | |
4350 ;; an optimizer for forms where <form1> is less efficient than (not <form2>) | |
4351 (list 'not | |
4352 (cons (or (get (car form) 'byte-compile-negated-op) | |
4353 (error | |
4354 "Compiler error: `%s' has no `byte-compile-negated-op' property" | |
4355 (car form))) | |
4356 (cdr form)))) | |
4357 | |
4905
755ae5b97edb
Change "special form" to "special operator" in our sources.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4885
diff
changeset
|
4358 ;;; other tricky macro-like special-operators |
428 | 4359 |
4360 (byte-defop-compiler-1 catch) | |
4361 (byte-defop-compiler-1 unwind-protect) | |
4362 (byte-defop-compiler-1 condition-case) | |
4363 (byte-defop-compiler-1 save-excursion) | |
4364 (byte-defop-compiler-1 save-current-buffer) | |
4365 (byte-defop-compiler-1 save-restriction) | |
4366 (byte-defop-compiler-1 with-output-to-temp-buffer) | |
4367 ;; no track-mouse. | |
4368 | |
5356
5dd1ba5e0113
Be better about eliminating `block's that are not `return-from'd, bytecomp.el
Aidan Kehoe <kehoea@parhasard.net>
parents:
5353
diff
changeset
|
4369 (defvar byte-compile-active-blocks nil) |
5dd1ba5e0113
Be better about eliminating `block's that are not `return-from'd, bytecomp.el
Aidan Kehoe <kehoea@parhasard.net>
parents:
5353
diff
changeset
|
4370 |
428 | 4371 (defun byte-compile-catch (form) |
5356
5dd1ba5e0113
Be better about eliminating `block's that are not `return-from'd, bytecomp.el
Aidan Kehoe <kehoea@parhasard.net>
parents:
5353
diff
changeset
|
4372 "Byte-compile and return a `catch' from. |
5dd1ba5e0113
Be better about eliminating `block's that are not `return-from'd, bytecomp.el
Aidan Kehoe <kehoea@parhasard.net>
parents:
5353
diff
changeset
|
4373 |
5dd1ba5e0113
Be better about eliminating `block's that are not `return-from'd, bytecomp.el
Aidan Kehoe <kehoea@parhasard.net>
parents:
5353
diff
changeset
|
4374 If FORM is the result of macroexpanding a `block' form (the TAG argument is |
5376
4b529b940e2e
Eliminate unused blocks named nil, too, cl-macs.el, bytecomp.el
Aidan Kehoe <kehoea@parhasard.net>
parents:
5374
diff
changeset
|
4375 a quoted symbol with a `cl-block-name' property) and there is no |
5356
5dd1ba5e0113
Be better about eliminating `block's that are not `return-from'd, bytecomp.el
Aidan Kehoe <kehoea@parhasard.net>
parents:
5353
diff
changeset
|
4376 corresponding `return-from' within the block--or equivalently, it was |
5dd1ba5e0113
Be better about eliminating `block's that are not `return-from'd, bytecomp.el
Aidan Kehoe <kehoea@parhasard.net>
parents:
5353
diff
changeset
|
4377 optimized away--just byte compile and return the BODY." |
5dd1ba5e0113
Be better about eliminating `block's that are not `return-from'd, bytecomp.el
Aidan Kehoe <kehoea@parhasard.net>
parents:
5353
diff
changeset
|
4378 (let* ((symbol (car-safe (cdr-safe (nth 1 form)))) |
5376
4b529b940e2e
Eliminate unused blocks named nil, too, cl-macs.el, bytecomp.el
Aidan Kehoe <kehoea@parhasard.net>
parents:
5374
diff
changeset
|
4379 (not-present '#:not-present) |
4b529b940e2e
Eliminate unused blocks named nil, too, cl-macs.el, bytecomp.el
Aidan Kehoe <kehoea@parhasard.net>
parents:
5374
diff
changeset
|
4380 (block (and symbol (symbolp symbol) |
4b529b940e2e
Eliminate unused blocks named nil, too, cl-macs.el, bytecomp.el
Aidan Kehoe <kehoea@parhasard.net>
parents:
5374
diff
changeset
|
4381 (get symbol 'cl-block-name not-present))) |
4b529b940e2e
Eliminate unused blocks named nil, too, cl-macs.el, bytecomp.el
Aidan Kehoe <kehoea@parhasard.net>
parents:
5374
diff
changeset
|
4382 (elt (and (not (eq block not-present)) (list block))) |
5356
5dd1ba5e0113
Be better about eliminating `block's that are not `return-from'd, bytecomp.el
Aidan Kehoe <kehoea@parhasard.net>
parents:
5353
diff
changeset
|
4383 (byte-compile-active-blocks |
5376
4b529b940e2e
Eliminate unused blocks named nil, too, cl-macs.el, bytecomp.el
Aidan Kehoe <kehoea@parhasard.net>
parents:
5374
diff
changeset
|
4384 (if elt |
5356
5dd1ba5e0113
Be better about eliminating `block's that are not `return-from'd, bytecomp.el
Aidan Kehoe <kehoea@parhasard.net>
parents:
5353
diff
changeset
|
4385 (cons elt byte-compile-active-blocks) |
5dd1ba5e0113
Be better about eliminating `block's that are not `return-from'd, bytecomp.el
Aidan Kehoe <kehoea@parhasard.net>
parents:
5353
diff
changeset
|
4386 byte-compile-active-blocks)) |
5dd1ba5e0113
Be better about eliminating `block's that are not `return-from'd, bytecomp.el
Aidan Kehoe <kehoea@parhasard.net>
parents:
5353
diff
changeset
|
4387 (body |
5dd1ba5e0113
Be better about eliminating `block's that are not `return-from'd, bytecomp.el
Aidan Kehoe <kehoea@parhasard.net>
parents:
5353
diff
changeset
|
4388 (byte-compile-top-level (cons 'progn (cddr form)) |
5377
eac2e6bd5b2c
Correct some minor problems in my last change.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5376
diff
changeset
|
4389 (and (not elt) for-effect)))) |
5376
4b529b940e2e
Eliminate unused blocks named nil, too, cl-macs.el, bytecomp.el
Aidan Kehoe <kehoea@parhasard.net>
parents:
5374
diff
changeset
|
4390 (if (and elt (not (cdr elt))) |
5356
5dd1ba5e0113
Be better about eliminating `block's that are not `return-from'd, bytecomp.el
Aidan Kehoe <kehoea@parhasard.net>
parents:
5353
diff
changeset
|
4391 ;; A lexical block without any contained return-from clauses: |
5dd1ba5e0113
Be better about eliminating `block's that are not `return-from'd, bytecomp.el
Aidan Kehoe <kehoea@parhasard.net>
parents:
5353
diff
changeset
|
4392 (byte-compile-form body) |
5dd1ba5e0113
Be better about eliminating `block's that are not `return-from'd, bytecomp.el
Aidan Kehoe <kehoea@parhasard.net>
parents:
5353
diff
changeset
|
4393 ;; A normal catch call, or a lexical block with a contained |
5dd1ba5e0113
Be better about eliminating `block's that are not `return-from'd, bytecomp.el
Aidan Kehoe <kehoea@parhasard.net>
parents:
5353
diff
changeset
|
4394 ;; return-from clause. |
5dd1ba5e0113
Be better about eliminating `block's that are not `return-from'd, bytecomp.el
Aidan Kehoe <kehoea@parhasard.net>
parents:
5353
diff
changeset
|
4395 (byte-compile-form (car (cdr form))) |
5dd1ba5e0113
Be better about eliminating `block's that are not `return-from'd, bytecomp.el
Aidan Kehoe <kehoea@parhasard.net>
parents:
5353
diff
changeset
|
4396 (byte-compile-push-constant body) |
5dd1ba5e0113
Be better about eliminating `block's that are not `return-from'd, bytecomp.el
Aidan Kehoe <kehoea@parhasard.net>
parents:
5353
diff
changeset
|
4397 (byte-compile-out 'byte-catch 0)))) |
5353
38e24b8be4ea
Improve the lexical scoping in #'block, #'return-from.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5344
diff
changeset
|
4398 |
428 | 4399 (defun byte-compile-unwind-protect (form) |
4400 (byte-compile-push-constant | |
4401 (byte-compile-top-level-body (cdr (cdr form)) t)) | |
4402 (byte-compile-out 'byte-unwind-protect 0) | |
4403 (byte-compile-form-do-effect (car (cdr form))) | |
4404 (byte-compile-out 'byte-unbind 1)) | |
4405 | |
4406 ;;(defun byte-compile-track-mouse (form) | |
4407 ;; (byte-compile-form | |
4408 ;; (list | |
4409 ;; 'funcall | |
4410 ;; (list 'quote | |
4411 ;; (list 'lambda nil | |
4412 ;; (cons 'track-mouse | |
4413 ;; (byte-compile-top-level-body (cdr form)))))))) | |
4414 | |
4415 (defun byte-compile-condition-case (form) | |
4416 (let* ((var (nth 1 form)) | |
4417 (byte-compile-bound-variables | |
4418 (if var | |
4419 (cons (cons var 0) | |
4420 (cons 'new-scope byte-compile-bound-variables)) | |
4421 (cons 'new-scope byte-compile-bound-variables)))) | |
4422 (or (symbolp var) | |
4423 (byte-compile-warn | |
4424 "%s is not a variable-name or nil (in condition-case)" | |
4425 (prin1-to-string var))) | |
4426 (byte-compile-push-constant var) | |
4427 (byte-compile-push-constant (byte-compile-top-level | |
4428 (nth 2 form) for-effect)) | |
4429 (let ((clauses (cdr (cdr (cdr form)))) | |
4430 compiled-clauses) | |
4431 (while clauses | |
4432 (let* ((clause (car clauses)) | |
4433 (condition (car clause))) | |
4434 (cond ((not (or (symbolp condition) | |
4435 (and (listp condition) | |
4436 (let ((syms condition) (ok t)) | |
4437 (while syms | |
4438 (if (not (symbolp (car syms))) | |
4439 (setq ok nil)) | |
4440 (setq syms (cdr syms))) | |
4441 ok)))) | |
4442 (byte-compile-warn | |
4443 "%s is not a symbol naming a condition or a list of such (in condition-case)" | |
4444 (prin1-to-string condition))) | |
4445 ;; ((not (or (eq condition 't) | |
4446 ;; (and (stringp (get condition 'error-message)) | |
4447 ;; (consp (get condition 'error-conditions))))) | |
4448 ;; (byte-compile-warn | |
4449 ;; "%s is not a known condition name (in condition-case)" | |
4450 ;; condition)) | |
4451 ) | |
4452 (setq compiled-clauses | |
4453 (cons (cons condition | |
4454 (byte-compile-top-level-body | |
4455 (cdr clause) for-effect)) | |
4456 compiled-clauses))) | |
4457 (setq clauses (cdr clauses))) | |
4458 (byte-compile-push-constant (nreverse compiled-clauses))) | |
4459 (if (memq 'unused-vars byte-compile-warnings) | |
4460 ;; done compiling in this scope, warn now. | |
4461 (byte-compile-warn-about-unused-variables)) | |
4462 (byte-compile-out 'byte-condition-case 0))) | |
4463 | |
4464 | |
4465 (defun byte-compile-save-excursion (form) | |
4466 (byte-compile-out 'byte-save-excursion 0) | |
4467 (byte-compile-body-do-effect (cdr form)) | |
4468 (byte-compile-out 'byte-unbind 1)) | |
4469 | |
4470 (defun byte-compile-save-restriction (form) | |
4471 (byte-compile-out 'byte-save-restriction 0) | |
4472 (byte-compile-body-do-effect (cdr form)) | |
4473 (byte-compile-out 'byte-unbind 1)) | |
4474 | |
4475 (defun byte-compile-save-current-buffer (form) | |
5503
7b5946dbfb96
Drop support for generating code appropriate for Emacs 19, bytecomp.el
Aidan Kehoe <kehoea@parhasard.net>
parents:
5475
diff
changeset
|
4476 (byte-compile-out 'byte-save-current-buffer 0) |
7b5946dbfb96
Drop support for generating code appropriate for Emacs 19, bytecomp.el
Aidan Kehoe <kehoea@parhasard.net>
parents:
5475
diff
changeset
|
4477 (byte-compile-body-do-effect (cdr form)) |
7b5946dbfb96
Drop support for generating code appropriate for Emacs 19, bytecomp.el
Aidan Kehoe <kehoea@parhasard.net>
parents:
5475
diff
changeset
|
4478 (byte-compile-out 'byte-unbind 1)) |
428 | 4479 |
4480 (defun byte-compile-with-output-to-temp-buffer (form) | |
4481 (byte-compile-form (car (cdr form))) | |
4482 (byte-compile-out 'byte-temp-output-buffer-setup 0) | |
4483 (byte-compile-body (cdr (cdr form))) | |
4484 (byte-compile-out 'byte-temp-output-buffer-show 0)) | |
5391
f9dc75bdbdc4
Implement #'load-time-value less hackishly, by modifying the byte compiler.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5377
diff
changeset
|
4485 |
4677
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4639
diff
changeset
|
4486 (defun byte-compile-multiple-value-call (form) |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4639
diff
changeset
|
4487 (if (< (length form) 2) |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4639
diff
changeset
|
4488 (progn |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4639
diff
changeset
|
4489 (byte-compile-warn-wrong-args form 1) |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4639
diff
changeset
|
4490 (byte-compile-normal-call |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4639
diff
changeset
|
4491 `(signal 'wrong-number-of-arguments '(,(car form) |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4639
diff
changeset
|
4492 ,(length (cdr form)))))) |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4639
diff
changeset
|
4493 (setq form (cdr form)) |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4639
diff
changeset
|
4494 (byte-compile-form (car form)) |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4639
diff
changeset
|
4495 (byte-compile-push-constant 0) |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4639
diff
changeset
|
4496 (byte-compile-variable-ref 'byte-varref 'multiple-values-limit) |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4639
diff
changeset
|
4497 ;; bind-multiple-value-limits leaves two existing values on the stack, |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4639
diff
changeset
|
4498 ;; and pushes a new value, the specpdl_depth() at the time it was |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4639
diff
changeset
|
4499 ;; called. |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4639
diff
changeset
|
4500 (byte-compile-out 'byte-bind-multiple-value-limits 0) |
4783
e29fcfd8df5f
Eliminate most core code byte-compile warnings.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4775
diff
changeset
|
4501 (mapc 'byte-compile-form (cdr form)) |
4677
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4639
diff
changeset
|
4502 ;; Most of the other code puts this sort of value in the program stream, |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4639
diff
changeset
|
4503 ;; not pushing it on the stack. |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4639
diff
changeset
|
4504 (byte-compile-push-constant (+ 3 (length form))) |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4639
diff
changeset
|
4505 (byte-compile-out 'byte-multiple-value-call (+ 3 (length form))) |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4639
diff
changeset
|
4506 (pushnew '(subrp (symbol-function 'multiple-value-call)) |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4639
diff
changeset
|
4507 byte-compile-checks-on-load |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4639
diff
changeset
|
4508 :test #'equal))) |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4639
diff
changeset
|
4509 |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4639
diff
changeset
|
4510 (defun byte-compile-multiple-value-list-internal (form) |
5366
f00192e1cd49
Examining the result of #'length: `eql', not `=', it's better style & cheaper
Aidan Kehoe <kehoea@parhasard.net>
parents:
5358
diff
changeset
|
4511 (if (not (eql 4 (length form))) |
4677
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4639
diff
changeset
|
4512 (progn |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4639
diff
changeset
|
4513 (byte-compile-warn-wrong-args form 3) |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4639
diff
changeset
|
4514 (byte-compile-normal-call |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4639
diff
changeset
|
4515 `(signal 'wrong-number-of-arguments '(,(car form) |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4639
diff
changeset
|
4516 ,(length (cdr form)))))) |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4639
diff
changeset
|
4517 (byte-compile-form (nth 1 form)) |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4639
diff
changeset
|
4518 (byte-compile-form (nth 2 form)) |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4639
diff
changeset
|
4519 (byte-compile-out 'byte-bind-multiple-value-limits 0) |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4639
diff
changeset
|
4520 (byte-compile-form (nth 3 form)) |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4639
diff
changeset
|
4521 (byte-compile-out (get (car form) 'byte-opcode) 0) |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4639
diff
changeset
|
4522 (pushnew '(subrp (symbol-function 'multiple-value-call)) |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4639
diff
changeset
|
4523 byte-compile-checks-on-load |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4639
diff
changeset
|
4524 :test #'equal))) |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4639
diff
changeset
|
4525 |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4639
diff
changeset
|
4526 (defun byte-compile-throw (form) |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4639
diff
changeset
|
4527 ;; We can't use byte-compile-two-args for throw because in the event that |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4639
diff
changeset
|
4528 ;; the form does not have two args, it tries to #'funcall it expecting a |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4639
diff
changeset
|
4529 ;; runtime wrong-number-of-arguments error. Now that #'throw is a special |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4639
diff
changeset
|
4530 ;; form, it provokes an invalid-function error instead (or at least it |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4639
diff
changeset
|
4531 ;; should; there's a kludge around for the moment in eval.c that avoids |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4639
diff
changeset
|
4532 ;; that, but this file should not assume that that will always be there). |
5366
f00192e1cd49
Examining the result of #'length: `eql', not `=', it's better style & cheaper
Aidan Kehoe <kehoea@parhasard.net>
parents:
5358
diff
changeset
|
4533 (if (not (eql 2 (length (cdr form)))) |
4677
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4639
diff
changeset
|
4534 (progn |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4639
diff
changeset
|
4535 (byte-compile-warn-wrong-args form 2) |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4639
diff
changeset
|
4536 (byte-compile-normal-call |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4639
diff
changeset
|
4537 `(signal 'wrong-number-of-arguments '(,(car form) |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4639
diff
changeset
|
4538 ,(length (cdr form)))))) |
5356
5dd1ba5e0113
Be better about eliminating `block's that are not `return-from'd, bytecomp.el
Aidan Kehoe <kehoea@parhasard.net>
parents:
5353
diff
changeset
|
4539 ;; If this form was macroexpanded from `return-from', mark the |
5dd1ba5e0113
Be better about eliminating `block's that are not `return-from'd, bytecomp.el
Aidan Kehoe <kehoea@parhasard.net>
parents:
5353
diff
changeset
|
4540 ;; corresponding block as having been referenced. |
5dd1ba5e0113
Be better about eliminating `block's that are not `return-from'd, bytecomp.el
Aidan Kehoe <kehoea@parhasard.net>
parents:
5353
diff
changeset
|
4541 (let* ((symbol (car-safe (cdr-safe (nth 1 form)))) |
5376
4b529b940e2e
Eliminate unused blocks named nil, too, cl-macs.el, bytecomp.el
Aidan Kehoe <kehoea@parhasard.net>
parents:
5374
diff
changeset
|
4542 (not-present '#:not-present) |
5377
eac2e6bd5b2c
Correct some minor problems in my last change.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5376
diff
changeset
|
4543 (block (if (and symbol (symbolp symbol)) |
eac2e6bd5b2c
Correct some minor problems in my last change.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5376
diff
changeset
|
4544 (get symbol 'cl-block-name not-present) |
eac2e6bd5b2c
Correct some minor problems in my last change.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5376
diff
changeset
|
4545 not-present)) |
5376
4b529b940e2e
Eliminate unused blocks named nil, too, cl-macs.el, bytecomp.el
Aidan Kehoe <kehoea@parhasard.net>
parents:
5374
diff
changeset
|
4546 (assq (and (not (eq block not-present)) |
4b529b940e2e
Eliminate unused blocks named nil, too, cl-macs.el, bytecomp.el
Aidan Kehoe <kehoea@parhasard.net>
parents:
5374
diff
changeset
|
4547 (assq block byte-compile-active-blocks)))) |
5377
eac2e6bd5b2c
Correct some minor problems in my last change.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5376
diff
changeset
|
4548 (if assq |
eac2e6bd5b2c
Correct some minor problems in my last change.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5376
diff
changeset
|
4549 (setcdr assq t) |
eac2e6bd5b2c
Correct some minor problems in my last change.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5376
diff
changeset
|
4550 (if (not (eq block not-present)) |
eac2e6bd5b2c
Correct some minor problems in my last change.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5376
diff
changeset
|
4551 ;; No corresponding enclosing block. |
eac2e6bd5b2c
Correct some minor problems in my last change.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5376
diff
changeset
|
4552 (byte-compile-warn "return-from: no enclosing block named `%s'" |
eac2e6bd5b2c
Correct some minor problems in my last change.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5376
diff
changeset
|
4553 block)))) |
5376
4b529b940e2e
Eliminate unused blocks named nil, too, cl-macs.el, bytecomp.el
Aidan Kehoe <kehoea@parhasard.net>
parents:
5374
diff
changeset
|
4554 (mapc 'byte-compile-form (cdr form)) ;; Push the arguments |
4677
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4639
diff
changeset
|
4555 (byte-compile-out (get (car form) 'byte-opcode) 0) |
5376
4b529b940e2e
Eliminate unused blocks named nil, too, cl-macs.el, bytecomp.el
Aidan Kehoe <kehoea@parhasard.net>
parents:
5374
diff
changeset
|
4556 (pushnew '(null (function-max-args 'throw)) byte-compile-checks-on-load |
4677
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4639
diff
changeset
|
4557 :test #'equal))) |
428 | 4558 |
4559 ;;; top-level forms elsewhere | |
4560 | |
4561 (byte-defop-compiler-1 defun) | |
4562 (byte-defop-compiler-1 defmacro) | |
4563 (byte-defop-compiler-1 defvar) | |
442 | 4564 (byte-defop-compiler-1 defvar byte-compile-defvar-or-defconst) |
4565 (byte-defop-compiler-1 defconst byte-compile-defvar-or-defconst) | |
428 | 4566 (byte-defop-compiler-1 autoload) |
4567 ;; According to Mly this can go now that lambda is a macro | |
4568 ;(byte-defop-compiler-1 lambda byte-compile-lambda-form) | |
4569 (byte-defop-compiler-1 defalias) | |
4570 (byte-defop-compiler-1 define-function) | |
4571 | |
4572 (defun byte-compile-defun (form) | |
4573 ;; This is not used for file-level defuns with doc strings. | |
4574 (byte-compile-two-args ; Use this to avoid byte-compile-fset's warning. | |
4575 (list 'fset (list 'quote (nth 1 form)) | |
4576 (byte-compile-byte-code-maker | |
4577 (byte-compile-lambda (cons 'lambda (cdr (cdr form))))))) | |
4578 (byte-compile-discard) | |
4579 (byte-compile-constant (nth 1 form))) | |
4580 | |
4581 (defun byte-compile-defmacro (form) | |
4582 ;; This is not used for file-level defmacros with doc strings. | |
4583 (byte-compile-body-do-effect | |
4584 (list (list 'fset (list 'quote (nth 1 form)) | |
4585 (let ((code (byte-compile-byte-code-maker | |
4586 (byte-compile-lambda | |
4587 (cons 'lambda (cdr (cdr form))))))) | |
4588 (if (eq (car-safe code) 'make-byte-code) | |
4589 (list 'cons ''macro code) | |
4590 (list 'quote (cons 'macro (eval code)))))) | |
4591 (list 'quote (nth 1 form))))) | |
4592 | |
442 | 4593 (defun byte-compile-defvar-or-defconst (form) |
4594 ;; This is not used for file-level defvar/defconsts with doc strings: | |
4595 ;; byte-compile-file-form-defvar-or-defconst will be used in that case. | |
4596 ;; (defvar|defconst VAR [VALUE [DOCSTRING]]) | |
4597 (let ((fun (nth 0 form)) | |
4598 (var (nth 1 form)) | |
428 | 4599 (value (nth 2 form)) |
4600 (string (nth 3 form))) | |
442 | 4601 (when (> (length form) 4) |
4602 (byte-compile-warn | |
4603 "%s %s called with %d arguments, but accepts only %s" | |
4604 fun var (length (cdr form)) 3)) | |
4605 (when (memq 'free-vars byte-compile-warnings) | |
4606 (push (cons var byte-compile-global-bit) byte-compile-bound-variables)) | |
428 | 4607 (byte-compile-body-do-effect |
442 | 4608 (list |
4609 ;; Put the defined variable in this library's load-history entry | |
444 | 4610 ;; just as a real defvar would, but only in top-level forms with values. |
4611 (when (and (> (length form) 2) | |
4612 (null byte-compile-current-form)) | |
442 | 4613 `(push ',var current-load-list)) |
4614 (when (> (length form) 3) | |
4615 (when (and string (not (stringp string))) | |
4616 (byte-compile-warn "Third arg to %s %s is not a string: %s" | |
4617 fun var string)) | |
4618 `(put ',var 'variable-documentation ,string)) | |
4619 (if (cdr (cdr form)) ; `value' provided | |
4620 (if (eq fun 'defconst) | |
4621 ;; `defconst' sets `var' unconditionally. | |
4622 `(setq ,var ,value) | |
4623 ;; `defvar' sets `var' only when unbound. | |
1672 | 4624 `(if (not (default-boundp ',var)) (set-default ',var ,value)))) |
442 | 4625 `',var)))) |
428 | 4626 |
4627 (defun byte-compile-autoload (form) | |
4628 (and (byte-compile-constp (nth 1 form)) | |
4629 (byte-compile-constp (nth 5 form)) | |
4630 (memq (eval (nth 5 form)) '(t macro)) ; macro-p | |
4631 (not (fboundp (eval (nth 1 form)))) | |
4632 (byte-compile-warn | |
4633 "The compiler ignores `autoload' except at top level. You should | |
4634 probably put the autoload of the macro `%s' at top-level." | |
4635 (eval (nth 1 form)))) | |
4636 (byte-compile-normal-call form)) | |
4637 | |
4638 ;; Lambda's in valid places are handled as special cases by various code. | |
4639 ;; The ones that remain are errors. | |
4640 ;; According to Mly this can go now that lambda is a macro | |
4641 ;(defun byte-compile-lambda-form (form) | |
4642 ; (byte-compile-warn | |
4643 ; "`lambda' used in function position is invalid: probably you mean #'%s" | |
4644 ; (let ((print-escape-newlines t) | |
4645 ; (print-level 4) | |
4646 ; (print-length 4)) | |
4647 ; (prin1-to-string form))) | |
4648 ; (byte-compile-normal-call | |
4649 ; (list 'signal ''error | |
4650 ; (list 'quote (list "`lambda' used in function position" form))))) | |
4651 | |
4652 ;; Compile normally, but deal with warnings for the function being defined. | |
4653 (defun byte-compile-defalias (form) | |
4654 (if (and (consp (cdr form)) (consp (nth 1 form)) | |
4655 (eq (car (nth 1 form)) 'quote) | |
4656 (consp (cdr (nth 1 form))) | |
4657 (symbolp (nth 1 (nth 1 form))) | |
4658 (consp (nthcdr 2 form)) | |
4659 (consp (nth 2 form)) | |
4660 (eq (car (nth 2 form)) 'quote) | |
4661 (consp (cdr (nth 2 form))) | |
4662 (symbolp (nth 1 (nth 2 form)))) | |
4663 (progn | |
4664 (byte-compile-defalias-warn (nth 1 (nth 1 form)) | |
4665 (nth 1 (nth 2 form))) | |
4666 (setq byte-compile-function-environment | |
4667 (cons (cons (nth 1 (nth 1 form)) | |
4668 (nth 1 (nth 2 form))) | |
4669 byte-compile-function-environment)))) | |
4670 (byte-compile-normal-call form)) | |
4671 | |
4672 (defun byte-compile-define-function (form) | |
4673 (byte-compile-defalias form)) | |
4674 | |
4675 ;; Turn off warnings about prior calls to the function being defalias'd. | |
4676 ;; This could be smarter and compare those calls with | |
4677 ;; the function it is being aliased to. | |
4678 (defun byte-compile-defalias-warn (new alias) | |
4679 (let ((calls (assq new byte-compile-unresolved-functions))) | |
4680 (if calls | |
4681 (setq byte-compile-unresolved-functions | |
4682 (delq calls byte-compile-unresolved-functions))))) | |
4683 | |
4684 ;;; tags | |
4685 | |
4686 ;; Note: Most operations will strip off the 'TAG, but it speeds up | |
4687 ;; optimization to have the 'TAG as a part of the tag. | |
4688 ;; Tags will be (TAG . (tag-number . stack-depth)). | |
4689 (defun byte-compile-make-tag () | |
4690 (list 'TAG (setq byte-compile-tag-number (1+ byte-compile-tag-number)))) | |
4691 | |
4692 | |
4693 (defun byte-compile-out-tag (tag) | |
4694 (push tag byte-compile-output) | |
4695 (if (cdr (cdr tag)) | |
4696 (progn | |
4697 ;; ## remove this someday | |
4698 (and byte-compile-depth | |
4699 (not (= (cdr (cdr tag)) byte-compile-depth)) | |
4700 (error "Compiler bug: depth conflict at tag %d" (car (cdr tag)))) | |
4701 (setq byte-compile-depth (cdr (cdr tag)))) | |
4702 (setcdr (cdr tag) byte-compile-depth))) | |
4703 | |
4704 (defun byte-compile-goto (opcode tag) | |
4705 (push (cons opcode tag) byte-compile-output) | |
4706 (setcdr (cdr tag) (if (memq opcode byte-goto-always-pop-ops) | |
4707 (1- byte-compile-depth) | |
4708 byte-compile-depth)) | |
4709 (setq byte-compile-depth (and (not (eq opcode 'byte-goto)) | |
4710 (1- byte-compile-depth)))) | |
4711 | |
4712 (defun byte-compile-out (opcode offset) | |
4713 (push (cons opcode offset) byte-compile-output) | |
4714 (case opcode | |
4715 (byte-call | |
4716 (setq byte-compile-depth (- byte-compile-depth offset))) | |
4717 (byte-return | |
4718 ;; This is actually an unnecessary case, because there should be | |
4719 ;; no more opcodes behind byte-return. | |
4720 (setq byte-compile-depth nil)) | |
4677
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4639
diff
changeset
|
4721 (byte-multiple-value-call |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4639
diff
changeset
|
4722 (setq byte-compile-depth (- byte-compile-depth offset))) |
428 | 4723 (t |
4724 (setq byte-compile-depth (+ byte-compile-depth | |
4725 (or (aref byte-stack+-info | |
4726 (symbol-value opcode)) | |
4727 (- (1- offset)))) | |
4728 byte-compile-maxdepth (max byte-compile-depth | |
4729 byte-compile-maxdepth)))) | |
4730 ;;(if (< byte-compile-depth 0) (error "Compiler error: stack underflow")) | |
4731 ) | |
4732 | |
4733 | |
4734 ;;; call tree stuff | |
4735 | |
4736 (defun byte-compile-annotate-call-tree (form) | |
4737 (let (entry) | |
4738 ;; annotate the current call | |
4739 (if (setq entry (assq (car form) byte-compile-call-tree)) | |
4740 (or (memq byte-compile-current-form (nth 1 entry)) ;callers | |
4741 (setcar (cdr entry) | |
4742 (cons byte-compile-current-form (nth 1 entry)))) | |
4743 (push (list (car form) (list byte-compile-current-form) nil) | |
4744 byte-compile-call-tree)) | |
4745 ;; annotate the current function | |
4746 (if (setq entry (assq byte-compile-current-form byte-compile-call-tree)) | |
4747 (or (memq (car form) (nth 2 entry)) ;called | |
4748 (setcar (cdr (cdr entry)) | |
4749 (cons (car form) (nth 2 entry)))) | |
4750 (push (list byte-compile-current-form nil (list (car form))) | |
4751 byte-compile-call-tree)))) | |
4752 | |
4753 ;; Renamed from byte-compile-report-call-tree | |
4754 ;; to avoid interfering with completion of byte-compile-file. | |
4755 ;;;###autoload | |
4756 (defun display-call-tree (&optional filename) | |
4757 "Display a call graph of a specified file. | |
4758 This lists which functions have been called, what functions called | |
4759 them, and what functions they call. The list includes all functions | |
4760 whose definitions have been compiled in this Emacs session, as well as | |
4761 all functions called by those functions. | |
4762 | |
4763 The call graph does not include macros, inline functions, or | |
4764 primitives that the byte-code interpreter knows about directly \(eq, | |
4765 cons, etc.\). | |
4766 | |
4767 The call tree also lists those functions which are not known to be called | |
4768 \(that is, to which no calls have been compiled\), and which cannot be | |
4769 invoked interactively." | |
4770 (interactive) | |
4771 (message "Generating call tree...") | |
4772 (with-output-to-temp-buffer "*Call-Tree*" | |
4773 (set-buffer "*Call-Tree*") | |
4774 (erase-buffer) | |
4775 (message "Generating call tree... (sorting on %s)" | |
4776 byte-compile-call-tree-sort) | |
4777 (insert "Call tree for " | |
4778 (cond ((null byte-compile-current-file) (or filename "???")) | |
4779 ((stringp byte-compile-current-file) | |
4780 byte-compile-current-file) | |
4781 (t (buffer-name byte-compile-current-file))) | |
4782 " sorted on " | |
4783 (prin1-to-string byte-compile-call-tree-sort) | |
4784 ":\n\n") | |
4785 (if byte-compile-call-tree-sort | |
4786 (setq byte-compile-call-tree | |
4787 (sort byte-compile-call-tree | |
4788 (cond | |
4789 ((eq byte-compile-call-tree-sort 'callers) | |
4790 #'(lambda (x y) (< (length (nth 1 x)) | |
4791 (length (nth 1 y))))) | |
4792 ((eq byte-compile-call-tree-sort 'calls) | |
4793 #'(lambda (x y) (< (length (nth 2 x)) | |
4794 (length (nth 2 y))))) | |
4795 ((eq byte-compile-call-tree-sort 'calls+callers) | |
4796 #'(lambda (x y) (< (+ (length (nth 1 x)) | |
4797 (length (nth 2 x))) | |
4798 (+ (length (nth 1 y)) | |
4799 (length (nth 2 y)))))) | |
4800 ((eq byte-compile-call-tree-sort 'name) | |
4801 #'(lambda (x y) (string< (car x) | |
4802 (car y)))) | |
4803 (t (error | |
4804 "`byte-compile-call-tree-sort': `%s' - unknown sort mode" | |
4805 byte-compile-call-tree-sort)))))) | |
4806 (message "Generating call tree...") | |
4807 (let ((rest byte-compile-call-tree) | |
4808 (b (current-buffer)) | |
4809 f p | |
4810 callers calls) | |
4811 (while rest | |
4812 (prin1 (car (car rest)) b) | |
4813 (setq callers (nth 1 (car rest)) | |
4814 calls (nth 2 (car rest))) | |
4815 (insert "\t" | |
4816 (cond ((not (fboundp (setq f (car (car rest))))) | |
4817 (if (null f) | |
4818 " <top level>";; shouldn't insert nil then, actually -sk | |
4819 " <not defined>")) | |
4820 ((subrp (setq f (symbol-function f))) | |
4821 " <subr>") | |
4822 ((symbolp f) | |
4823 (format " ==> %s" f)) | |
4824 ((compiled-function-p f) | |
4825 "<compiled function>") | |
4826 ((not (consp f)) | |
4827 "<malformed function>") | |
4828 ((eq 'macro (car f)) | |
4829 (if (or (compiled-function-p (cdr f)) | |
4830 (assq 'byte-code (cdr (cdr (cdr f))))) | |
4831 " <compiled macro>" | |
4832 " <macro>")) | |
4833 ((assq 'byte-code (cdr (cdr f))) | |
4834 "<compiled lambda>") | |
4835 ((eq 'lambda (car f)) | |
4836 "<function>") | |
4837 (t "???")) | |
4838 (format " (%d callers + %d calls = %d)" | |
4839 ;; Does the optimizer eliminate common subexpressions?-sk | |
4840 (length callers) | |
4841 (length calls) | |
4842 (+ (length callers) (length calls))) | |
4843 "\n") | |
4844 (if callers | |
4845 (progn | |
4846 (insert " called by:\n") | |
4847 (setq p (point)) | |
4848 (insert " " (if (car callers) | |
4849 (mapconcat 'symbol-name callers ", ") | |
4850 "<top level>")) | |
4851 (let ((fill-prefix " ")) | |
4852 (fill-region-as-paragraph p (point))))) | |
4853 (if calls | |
4854 (progn | |
4855 (insert " calls:\n") | |
4856 (setq p (point)) | |
4857 (insert " " (mapconcat 'symbol-name calls ", ")) | |
4858 (let ((fill-prefix " ")) | |
4859 (fill-region-as-paragraph p (point))))) | |
4860 (insert "\n") | |
4861 (setq rest (cdr rest))) | |
4862 | |
4863 (message "Generating call tree...(finding uncalled functions...)") | |
4864 (setq rest byte-compile-call-tree) | |
4865 (let ((uncalled nil)) | |
4866 (while rest | |
4867 (or (nth 1 (car rest)) | |
4868 (null (setq f (car (car rest)))) | |
4869 (byte-compile-fdefinition f t) | |
4870 (commandp (byte-compile-fdefinition f nil)) | |
4871 (setq uncalled (cons f uncalled))) | |
4872 (setq rest (cdr rest))) | |
4873 (if uncalled | |
4874 (let ((fill-prefix " ")) | |
4875 (insert "Noninteractive functions not known to be called:\n ") | |
4876 (setq p (point)) | |
4877 (insert (mapconcat 'symbol-name (nreverse uncalled) ", ")) | |
4878 (fill-region-as-paragraph p (point))))) | |
4879 ) | |
4880 (message "Generating call tree...done.") | |
4881 )) | |
4882 | |
4883 | |
4884 ;;; by crl@newton.purdue.edu | |
4885 ;;; Only works noninteractively. | |
4886 ;;;###autoload | |
4887 (defun batch-byte-compile () | |
4888 "Run `byte-compile-file' on the files remaining on the command line. | |
4889 Use this from the command line, with `-batch'; | |
4890 it won't work in an interactive Emacs. | |
4891 Each file is processed even if an error occurred previously. | |
444 | 4892 For example, invoke \"xemacs -batch -f batch-byte-compile $emacs/ ~/*.el\"." |
428 | 4893 ;; command-line-args-left is what is left of the command line (from |
4894 ;; startup.el) | |
4895 (defvar command-line-args-left) ;Avoid 'free variable' warning | |
4896 (if (not noninteractive) | |
4897 (error "`batch-byte-compile' is to be used only with -batch")) | |
4898 (let ((error nil)) | |
4899 (while command-line-args-left | |
442 | 4900 (if (null (batch-byte-compile-one-file)) |
4901 (setq error t))) | |
428 | 4902 (message "Done") |
4903 (kill-emacs (if error 1 0)))) | |
4904 | |
442 | 4905 ;;;###autoload |
4906 (defun batch-byte-compile-one-file () | |
4907 "Run `byte-compile-file' on a single file remaining on the command line. | |
4908 Use this from the command line, with `-batch'; | |
4909 it won't work in an interactive Emacs." | |
4910 ;; command-line-args-left is what is left of the command line (from | |
4911 ;; startup.el) | |
4912 (defvar command-line-args-left) ;Avoid 'free variable' warning | |
4913 (if (not noninteractive) | |
4914 (error "`batch-byte-compile-one-file' is to be used only with -batch")) | |
4915 (let (error | |
4916 (file-to-process (car command-line-args-left))) | |
4917 (setq command-line-args-left (cdr command-line-args-left)) | |
4918 (if (file-directory-p (expand-file-name file-to-process)) | |
4919 (let ((files (directory-files file-to-process)) | |
4920 source dest) | |
4921 (while files | |
4922 (if (and (string-match emacs-lisp-file-regexp (car files)) | |
4923 (not (auto-save-file-name-p (car files))) | |
4924 (setq source (expand-file-name | |
4925 (car files) | |
4926 file-to-process)) | |
4927 (setq dest (byte-compile-dest-file source)) | |
4928 (file-exists-p dest) | |
4929 (file-newer-than-file-p source dest)) | |
4930 (if (null (batch-byte-compile-1 source)) | |
4931 (setq error t))) | |
4932 (setq files (cdr files))) | |
4933 (null error)) | |
4934 (batch-byte-compile-1 file-to-process)))) | |
4935 | |
428 | 4936 (defun batch-byte-compile-1 (file) |
4937 (condition-case err | |
4938 (progn (byte-compile-file file) t) | |
4939 (error | |
4940 (princ ">>Error occurred processing ") | |
4941 (princ file) | |
4942 (princ ": ") | |
4943 (if (fboundp 'display-error) ; XEmacs 19.8+ | |
4944 (display-error err nil) | |
4945 (princ (or (get (car err) 'error-message) (car err))) | |
4783
e29fcfd8df5f
Eliminate most core code byte-compile warnings.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4775
diff
changeset
|
4946 (mapc #'(lambda (x) (princ " ") (prin1 x)) (cdr err))) |
428 | 4947 (princ "\n") |
4948 nil))) | |
4949 | |
4950 ;;;###autoload | |
4951 (defun batch-byte-recompile-directory-norecurse () | |
4952 "Same as `batch-byte-recompile-directory' but without recursion." | |
4953 (setq byte-recompile-directory-recursively nil) | |
4954 (batch-byte-recompile-directory)) | |
4955 | |
4956 ;;;###autoload | |
4957 (defun batch-byte-recompile-directory () | |
4958 "Runs `byte-recompile-directory' on the dirs remaining on the command line. | |
4959 Must be used only with `-batch', and kills Emacs on completion. | |
4960 For example, invoke `xemacs -batch -f batch-byte-recompile-directory .'." | |
4961 ;; command-line-args-left is what is left of the command line (startup.el) | |
4962 (defvar command-line-args-left) ;Avoid 'free variable' warning | |
4963 (if (not noninteractive) | |
4964 (error "batch-byte-recompile-directory is to be used only with -batch")) | |
4965 (or command-line-args-left | |
4966 (setq command-line-args-left '("."))) | |
4967 (let ((byte-recompile-directory-ignore-errors-p t)) | |
4968 (while command-line-args-left | |
4969 (byte-recompile-directory (car command-line-args-left)) | |
4970 (setq command-line-args-left (cdr command-line-args-left)))) | |
4971 (kill-emacs 0)) | |
4972 | |
4973 (make-obsolete 'elisp-compile-defun 'compile-defun) | |
4974 (make-obsolete 'byte-compile-report-call-tree 'display-call-tree) | |
4975 | |
4976 ;; other make-obsolete calls in obsolete.el. | |
4977 | |
4978 (provide 'byte-compile) | |
4979 (provide 'bytecomp) | |
4980 | |
4981 | |
4982 ;;; report metering (see the hacks in bytecode.c) | |
4983 | |
4984 (if (boundp 'byte-code-meter) | |
4985 (defun byte-compile-report-ops () | |
4986 (defvar byte-code-meter) | |
4987 (with-output-to-temp-buffer "*Meter*" | |
4988 (set-buffer "*Meter*") | |
4989 (let ((i 0) n op off) | |
4990 (while (< i 256) | |
4991 (setq n (aref (aref byte-code-meter 0) i) | |
4992 off nil) | |
4993 (if t ;(not (zerop n)) | |
4994 (progn | |
4995 (setq op i) | |
4996 (setq off nil) | |
4997 (cond ((< op byte-nth) | |
4998 (setq off (logand op 7)) | |
4999 (setq op (logand op 248))) | |
5000 ((>= op byte-constant) | |
5001 (setq off (- op byte-constant) | |
5002 op byte-constant))) | |
5003 (setq op (aref byte-code-vector op)) | |
5004 (insert (format "%-4d" i)) | |
5005 (insert (symbol-name op)) | |
5006 (if off (insert " [" (int-to-string off) "]")) | |
5007 (indent-to 40) | |
5008 (insert (int-to-string n) "\n"))) | |
5009 (setq i (1+ i))))))) | |
5010 | |
5011 | |
5012 ;; To avoid "lisp nesting exceeds max-lisp-eval-depth" when bytecomp compiles | |
5013 ;; itself, compile some of its most used recursive functions (at load time). | |
5014 ;; | |
5015 (eval-when-compile | |
5016 (or (compiled-function-p (symbol-function 'byte-compile-form)) | |
5017 (let ((byte-optimize nil) ; do it fast | |
5018 (byte-compile-warnings nil)) | |
5503
7b5946dbfb96
Drop support for generating code appropriate for Emacs 19, bytecomp.el
Aidan Kehoe <kehoea@parhasard.net>
parents:
5475
diff
changeset
|
5019 (map nil (if noninteractive |
7b5946dbfb96
Drop support for generating code appropriate for Emacs 19, bytecomp.el
Aidan Kehoe <kehoea@parhasard.net>
parents:
5475
diff
changeset
|
5020 #'byte-compile |
7b5946dbfb96
Drop support for generating code appropriate for Emacs 19, bytecomp.el
Aidan Kehoe <kehoea@parhasard.net>
parents:
5475
diff
changeset
|
5021 #'(lambda (x) |
7b5946dbfb96
Drop support for generating code appropriate for Emacs 19, bytecomp.el
Aidan Kehoe <kehoea@parhasard.net>
parents:
5475
diff
changeset
|
5022 (message "compiling %s..." x) |
7b5946dbfb96
Drop support for generating code appropriate for Emacs 19, bytecomp.el
Aidan Kehoe <kehoea@parhasard.net>
parents:
5475
diff
changeset
|
5023 (byte-compile x) |
7b5946dbfb96
Drop support for generating code appropriate for Emacs 19, bytecomp.el
Aidan Kehoe <kehoea@parhasard.net>
parents:
5475
diff
changeset
|
5024 (message "compiling %s...done" x))) |
7b5946dbfb96
Drop support for generating code appropriate for Emacs 19, bytecomp.el
Aidan Kehoe <kehoea@parhasard.net>
parents:
5475
diff
changeset
|
5025 '(byte-compile-normal-call |
7b5946dbfb96
Drop support for generating code appropriate for Emacs 19, bytecomp.el
Aidan Kehoe <kehoea@parhasard.net>
parents:
5475
diff
changeset
|
5026 byte-compile-form |
7b5946dbfb96
Drop support for generating code appropriate for Emacs 19, bytecomp.el
Aidan Kehoe <kehoea@parhasard.net>
parents:
5475
diff
changeset
|
5027 byte-compile-body |
7b5946dbfb96
Drop support for generating code appropriate for Emacs 19, bytecomp.el
Aidan Kehoe <kehoea@parhasard.net>
parents:
5475
diff
changeset
|
5028 ;; Inserted some more than necessary, to speed it up. |
7b5946dbfb96
Drop support for generating code appropriate for Emacs 19, bytecomp.el
Aidan Kehoe <kehoea@parhasard.net>
parents:
5475
diff
changeset
|
5029 byte-compile-top-level |
7b5946dbfb96
Drop support for generating code appropriate for Emacs 19, bytecomp.el
Aidan Kehoe <kehoea@parhasard.net>
parents:
5475
diff
changeset
|
5030 byte-compile-out-toplevel |
7b5946dbfb96
Drop support for generating code appropriate for Emacs 19, bytecomp.el
Aidan Kehoe <kehoea@parhasard.net>
parents:
5475
diff
changeset
|
5031 byte-compile-constant |
7b5946dbfb96
Drop support for generating code appropriate for Emacs 19, bytecomp.el
Aidan Kehoe <kehoea@parhasard.net>
parents:
5475
diff
changeset
|
5032 byte-compile-variable-ref))))) |
7b5946dbfb96
Drop support for generating code appropriate for Emacs 19, bytecomp.el
Aidan Kehoe <kehoea@parhasard.net>
parents:
5475
diff
changeset
|
5033 |
428 | 5034 |
4683
0cc9d22c3732
Be more reliable about loading cl-macs at byte-compile time, cl.el.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4677
diff
changeset
|
5035 (run-hooks 'bytecomp-load-hook) |
0cc9d22c3732
Be more reliable about loading cl-macs at byte-compile time, cl.el.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4677
diff
changeset
|
5036 |
428 | 5037 ;;; bytecomp.el ends here |