Mercurial > hg > xemacs-beta
annotate lisp/bytecomp.el @ 4679:2c64d2bbb316
Test the multiple-value functionality.
tests/ChangeLog addition:
2009-08-16 Aidan Kehoe <kehoea@parhasard.net>
* automated/lisp-tests.el (foo):
Test the Common Lisp-compatibile multiple value functionality.
author | Aidan Kehoe <kehoea@parhasard.net> |
---|---|
date | Sun, 16 Aug 2009 21:00:08 +0100 |
parents | 8f1ee2d15784 |
children | 0cc9d22c3732 |
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 | |
17 ;; XEmacs is free software; you can redistribute it and/or modify it | |
18 ;; under the terms of the GNU General Public License as published by | |
19 ;; the Free Software Foundation; either version 2, or (at your option) | |
20 ;; any later version. | |
21 | |
22 ;; XEmacs is distributed in the hope that it will be useful, but | |
23 ;; WITHOUT ANY WARRANTY; without even the implied warranty of | |
24 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |
25 ;; General Public License for more details. | |
26 | |
27 ;; You should have received a copy of the GNU General Public License | |
28 ;; along with XEmacs; see the file COPYING. If not, write to the | |
29 ;; Free Software Foundation, Inc., 59 Temple Place - Suite 330, | |
30 ;; Boston, MA 02111-1307, USA. | |
31 | |
32 ;;; Synched up with: FSF 19.30. | |
33 | |
34 ;;; Commentary: | |
35 | |
36 ;; The Emacs Lisp byte compiler. This crunches lisp source into a | |
442 | 37 ;; sort of p-code (`bytecode') which takes up less space and can be |
38 ;; interpreted faster. First, the source code forms are converted to | |
39 ;; an intermediate form, `lapcode' [`LAP' == `Lisp Assembly Program'] | |
40 ;; which is much easier to manipulate than bytecode. Then the lapcode | |
41 ;; is converted to bytecode, which can be considered to be actual | |
42 ;; machine language. Optimizations can occur at either the source | |
43 ;; level or the lapcode level. | |
44 | |
45 ;; The user entry points are byte-compile-file, | |
428 | 46 ;; byte-recompile-directory and byte-compile-buffer. |
47 | |
48 ;;; Code: | |
49 | |
50 ;;; ======================================================================== | |
51 ;;; Entry points: | |
52 ;;; byte-recompile-directory, byte-compile-file, | |
53 ;;; batch-byte-compile, batch-byte-recompile-directory, | |
54 ;;; byte-compile, compile-defun, | |
55 ;;; display-call-tree | |
56 ;;; RMS says: | |
57 ;;; (byte-compile-buffer and byte-compile-and-load-file were turned off | |
58 ;;; because they are not terribly useful and get in the way of completion.) | |
59 ;;; But I'm leaving them. --ben | |
60 | |
61 ;;; This version of the byte compiler has the following improvements: | |
62 ;;; + optimization of compiled code: | |
63 ;;; - removal of unreachable code; | |
64 ;;; - removal of calls to side-effectless functions whose return-value | |
65 ;;; is unused; | |
66 ;;; - compile-time evaluation of safe constant forms, such as (consp nil) | |
67 ;;; and (ash 1 6); | |
68 ;;; - open-coding of literal lambdas; | |
69 ;;; - peephole optimization of emitted code; | |
70 ;;; - trivial functions are left uncompiled for speed. | |
71 ;;; + support for inline functions; | |
72 ;;; + compile-time evaluation of arbitrary expressions; | |
73 ;;; + compile-time warning messages for: | |
74 ;;; - functions being redefined with incompatible arglists; | |
75 ;;; - functions being redefined as macros, or vice-versa; | |
76 ;;; - functions or macros defined multiple times in the same file; | |
77 ;;; - functions being called with the incorrect number of arguments; | |
78 ;;; - functions being called which are not defined globally, in the | |
79 ;;; file, or as autoloads; | |
80 ;;; - assignment and reference of undeclared free variables; | |
81 ;;; - various syntax errors; | |
82 ;;; + correct compilation of nested defuns, defmacros, defvars and defsubsts; | |
83 ;;; + correct compilation of top-level uses of macros; | |
84 ;;; + the ability to generate a histogram of functions called. | |
85 | |
86 ;;; User customization variables: | |
87 ;;; | |
88 ;;; byte-compile-verbose Whether to report the function currently being | |
89 ;;; compiled in the minibuffer; | |
90 ;;; byte-optimize Whether to do optimizations; this may be | |
91 ;;; t, nil, 'source, or 'byte; | |
92 ;;; byte-optimize-log Whether to report (in excruciating detail) | |
93 ;;; exactly which optimizations have been made. | |
94 ;;; This may be t, nil, 'source, or 'byte; | |
95 ;;; byte-compile-error-on-warn Whether to stop compilation when a warning is | |
96 ;;; produced; | |
97 ;;; byte-compile-delete-errors Whether the optimizer may delete calls or | |
98 ;;; variable references that are side-effect-free | |
99 ;;; except that they may return an error. | |
100 ;;; byte-compile-generate-call-tree Whether to generate a histogram of | |
101 ;;; function calls. This can be useful for | |
102 ;;; finding unused functions, as well as simple | |
103 ;;; performance metering. | |
104 ;;; byte-compile-warnings List of warnings to issue, or t. May contain | |
105 ;;; 'free-vars (references to variables not in the | |
106 ;;; current lexical scope) | |
107 ;;; 'unused-vars (non-global variables bound but | |
108 ;;; not referenced) | |
109 ;;; 'unresolved (calls to unknown functions) | |
110 ;;; 'callargs (lambda calls with args that don't | |
111 ;;; match the lambda's definition) | |
112 ;;; 'subr-callargs (calls to subrs with args that | |
113 ;;; don't match the subr's definition) | |
114 ;;; 'redefine (function cell redefined from | |
115 ;;; a macro to a lambda or vice versa, | |
116 ;;; or redefined to take other args) | |
117 ;;; 'obsolete (obsolete variables and functions) | |
118 ;;; 'pedantic (references to Emacs-compatible | |
119 ;;; symbols) | |
120 ;;; byte-compile-emacs19-compatibility Whether the compiler should | |
121 ;;; generate .elc files which can be loaded into | |
122 ;;; generic emacs 19. | |
123 ;;; emacs-lisp-file-regexp Regexp for the extension of source-files; | |
444 | 124 ;;; see also the function `byte-compile-dest-file'. |
428 | 125 ;;; byte-compile-overwrite-file If nil, delete old .elc files before saving. |
126 ;;; | |
127 ;;; Most of the above parameters can also be set on a file-by-file basis; see | |
128 ;;; the documentation of the `byte-compiler-options' macro. | |
129 | |
130 ;;; New Features: | |
131 ;;; | |
132 ;;; o The form `defsubst' is just like `defun', except that the function | |
133 ;;; generated will be open-coded in compiled code which uses it. This | |
134 ;;; means that no function call will be generated, it will simply be | |
135 ;;; spliced in. Lisp functions calls are very slow, so this can be a | |
136 ;;; big win. | |
137 ;;; | |
138 ;;; You can generally accomplish the same thing with `defmacro', but in | |
139 ;;; that case, the defined procedure can't be used as an argument to | |
140 ;;; mapcar, etc. | |
141 ;;; | |
142 ;;; o You can make a given function be inline even if it has already been | |
143 ;;; defined with `defun' by using the `proclaim-inline' form like so: | |
144 ;;; (proclaim-inline my-function) | |
145 ;;; This is, in fact, exactly what `defsubst' does. To make a function no | |
146 ;;; longer be inline, you must use `proclaim-notinline'. Beware that if | |
147 ;;; you define a function with `defsubst' and later redefine it with | |
444 | 148 ;;; `defun', it will still be open-coded until you use `proclaim-notinline'. |
428 | 149 ;;; |
150 ;;; o You can also open-code one particular call to a function without | |
151 ;;; open-coding all calls. Use the 'inline' form to do this, like so: | |
152 ;;; | |
153 ;;; (inline (foo 1 2 3)) ;; `foo' will be open-coded | |
154 ;;; or... | |
155 ;;; (inline ;; `foo' and `baz' will be | |
156 ;;; (foo 1 2 3 (bar 5)) ;; open-coded, but `bar' will not. | |
157 ;;; (baz 0)) | |
158 ;;; | |
159 ;;; o It is possible to open-code a function in the same file it is defined | |
160 ;;; in without having to load that file before compiling it. the | |
161 ;;; byte-compiler has been modified to remember function definitions in | |
162 ;;; the compilation environment in the same way that it remembers macro | |
163 ;;; definitions. | |
164 ;;; | |
165 ;;; o Forms like ((lambda ...) ...) are open-coded. | |
166 ;;; | |
444 | 167 ;;; o The form `eval-when-compile' is like `progn', except that the body |
428 | 168 ;;; is evaluated at compile-time. When it appears at top-level, this |
169 ;;; is analogous to the Common Lisp idiom (eval-when (compile) ...). | |
170 ;;; When it does not appear at top-level, it is similar to the | |
171 ;;; Common Lisp #. reader macro (but not in interpreted code). | |
172 ;;; | |
444 | 173 ;;; o The form `eval-and-compile' is similar to `eval-when-compile', |
174 ;;; but the whole form is evalled both at compile-time and at run-time. | |
428 | 175 ;;; |
176 ;;; o The command M-x byte-compile-and-load-file does what you'd think. | |
177 ;;; | |
444 | 178 ;;; o The command `compile-defun' is analogous to `eval-defun'. |
428 | 179 ;;; |
444 | 180 ;;; o If you run `byte-compile-file' on a filename which is visited in a |
428 | 181 ;;; buffer, and that buffer is modified, you are asked whether you want |
182 ;;; to save the buffer before compiling. | |
183 ;;; | |
184 ;;; o You can add this to /etc/magic to make file(1) recognize the files | |
185 ;;; generated by this compiler: | |
186 ;;; | |
613 | 187 ;;; 0 string ;ELC XEmacs Lisp compiled file, |
428 | 188 ;;; >4 byte x version %d |
189 ;;; | |
190 ;;; TO DO: | |
191 ;;; | |
192 ;;; o Should implement declarations and proclamations, notably special, | |
193 ;;; unspecial, and ignore. Do this in such a way as to not break cl.el. | |
194 ;;; o The bound-but-not-used warnings are not issued for variables whose | |
195 ;;; bindings were established in the arglist, due to the lack of an | |
196 ;;; ignore declaration. Once ignore exists, this should be turned on. | |
197 ;;; o Warn about functions and variables defined but not used? | |
198 ;;; Maybe add some kind of `export' declaration for this? | |
199 ;;; (With interactive functions being automatically exported?) | |
200 ;;; o Any reference to a variable, even one which is a no-op, will cause | |
201 ;;; the warning not to be given. Possibly we could use the for-effect | |
202 ;;; flag to determine when this reference is useless; possibly more | |
203 ;;; complex flow analysis would be necessary. | |
204 ;;; o If the optimizer deletes a variable reference, we might be left with | |
205 ;;; a bound-but-not-referenced warning. Generally this is ok, but not if | |
206 ;;; it's a synergistic result of macroexpansion. Need some way to note | |
207 ;;; that a varref is being optimized away? Of course it would be nice to | |
208 ;;; optimize away the binding too, someday, but it's unsafe today. | |
209 ;;; o (See byte-optimize.el for the optimization TODO list.) | |
210 | |
211 (require 'backquote) | |
212 | |
213 (or (fboundp 'defsubst) | |
214 ;; This really ought to be loaded already! | |
215 (load-library "bytecomp-runtime")) | |
216 | |
217 (eval-when-compile | |
4677
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4639
diff
changeset
|
218 (defvar byte-compile-single-version t |
428 | 219 "If this is true, the choice of emacs version (v19 or v20) byte-codes will |
220 be hard-coded into bytecomp when it compiles itself. If the compiler itself | |
221 is compiled with optimization, this causes a speedup.") | |
222 | |
223 (cond | |
224 (byte-compile-single-version | |
225 (defmacro byte-compile-single-version () t) | |
226 (defmacro byte-compile-version-cond (cond) (list 'quote (eval cond)))) | |
227 (t | |
228 (defmacro byte-compile-single-version () nil) | |
229 (defmacro byte-compile-version-cond (cond) cond))) | |
230 ) | |
231 | |
444 | 232 (defvar emacs-lisp-file-regexp "\\.el$" |
428 | 233 "*Regexp which matches Emacs Lisp source files. |
234 You may want to redefine `byte-compile-dest-file' if you change this.") | |
235 | |
236 ;; This enables file name handlers such as jka-compr | |
237 ;; to remove parts of the file name that should not be copied | |
238 ;; through to the output file name. | |
239 (defun byte-compiler-base-file-name (filename) | |
240 (let ((handler (find-file-name-handler filename | |
241 'byte-compiler-base-file-name))) | |
242 (if handler | |
243 (funcall handler 'byte-compiler-base-file-name filename) | |
244 filename))) | |
245 | |
246 (unless (fboundp 'byte-compile-dest-file) | |
247 ;; The user may want to redefine this along with emacs-lisp-file-regexp, | |
248 ;; so only define it if it is undefined. | |
249 (defun byte-compile-dest-file (filename) | |
250 "Convert an Emacs Lisp source file name to a compiled file name." | |
251 (setq filename (byte-compiler-base-file-name filename)) | |
252 (setq filename (file-name-sans-versions filename)) | |
253 (if (string-match emacs-lisp-file-regexp filename) | |
254 (concat (substring filename 0 (match-beginning 0)) ".elc") | |
255 (concat filename ".elc")))) | |
256 | |
257 ;; This can be the 'byte-compile property of any symbol. | |
258 (autoload 'byte-compile-inline-expand "byte-optimize") | |
259 | |
260 ;; This is the entrypoint to the lapcode optimizer pass1. | |
261 (autoload 'byte-optimize-form "byte-optimize") | |
262 ;; This is the entrypoint to the lapcode optimizer pass2. | |
263 (autoload 'byte-optimize-lapcode "byte-optimize") | |
264 (autoload 'byte-compile-unfold-lambda "byte-optimize") | |
265 | |
266 ;; This is the entry point to the decompiler, which is used by the | |
267 ;; disassembler. The disassembler just requires 'byte-compile, but | |
268 ;; that doesn't define this function, so this seems to be a reasonable | |
269 ;; thing to do. | |
270 (autoload 'byte-decompile-bytecode "byte-optimize") | |
271 | |
272 (defvar byte-compile-verbose | |
273 (and (not noninteractive) (> (device-baud-rate) search-slow-speed)) | |
274 "*Non-nil means print messages describing progress of byte-compiler.") | |
275 | |
276 (defvar byte-compile-emacs19-compatibility | |
277 (not (emacs-version>= 20)) | |
278 "*Non-nil means generate output that can run in Emacs 19.") | |
279 | |
280 (defvar byte-compile-print-gensym t | |
281 "*Non-nil means generate code that creates unique symbols at run-time. | |
282 This is achieved by printing uninterned symbols using the `#:SYMBOL' | |
283 notation, so that they will be read uninterned when run. | |
284 | |
285 With this feature, code that uses uninterned symbols in macros will | |
286 not be runnable under pre-21.0 XEmacsen. | |
287 | |
288 When `byte-compile-emacs19-compatibility' is non-nil, this variable is | |
289 ignored and considered to be nil.") | |
290 | |
291 (defvar byte-optimize t | |
292 "*Enables optimization in the byte compiler. | |
293 nil means don't do any optimization. | |
294 t means do all optimizations. | |
295 `source' means do source-level optimizations only. | |
296 `byte' means do code-level optimizations only.") | |
297 | |
298 (defvar byte-compile-delete-errors t | |
299 "*If non-nil, the optimizer may delete forms that may signal an error. | |
300 This includes variable references and calls to functions such as `car'.") | |
301 | |
302 ;; XEmacs addition | |
303 (defvar byte-compile-new-bytecodes nil | |
304 "This is completely ignored. It is only around for backwards | |
305 compatibility.") | |
306 | |
4677
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4639
diff
changeset
|
307 (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
|
308 "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
|
309 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
|
310 reverse order.") |
428 | 311 |
312 ;; FSF enables byte-compile-dynamic-docstrings but not byte-compile-dynamic | |
313 ;; by default. This would be a reasonable conservative approach except | |
314 ;; for the fact that if you enable either of these, you get incompatible | |
315 ;; byte code that can't be read by XEmacs 19.13 or before or FSF 19.28 or | |
316 ;; before. | |
317 ;; | |
318 ;; Therefore, neither is enabled for 19.14. Both are enabled for 20.0 | |
319 ;; because we have no reason to be conservative about changing the | |
320 ;; way things work. (Ben) | |
321 | |
322 ;; However, I don't think that defaulting byte-compile-dynamic to nil | |
323 ;; is a compatibility issue - rather it is a performance issue. | |
324 ;; Therefore I am setting byte-compile-dynamic back to nil. (mrb) | |
325 | |
326 (defvar byte-compile-dynamic nil | |
327 "*If non-nil, compile function bodies so they load lazily. | |
328 They are hidden comments in the compiled file, and brought into core when the | |
329 function is called. | |
330 | |
331 To enable this option, make it a file-local variable | |
332 in the source file you want it to apply to. | |
333 For example, add -*-byte-compile-dynamic: t;-*- on the first line. | |
334 | |
335 When this option is true, if you load the compiled file and then move it, | |
336 the functions you loaded will not be able to run.") | |
337 | |
338 (defvar byte-compile-dynamic-docstrings (emacs-version>= 20) | |
339 "*If non-nil, compile doc strings for lazy access. | |
340 We bury the doc strings of functions and variables | |
341 inside comments in the file, and bring them into core only when they | |
342 are actually needed. | |
343 | |
344 When this option is true, if you load the compiled file and then move it, | |
345 you won't be able to find the documentation of anything in that file. | |
346 | |
347 To disable this option for a certain file, make it a file-local variable | |
348 in the source file. For example, add this to the first line: | |
349 -*-byte-compile-dynamic-docstrings:nil;-*- | |
350 You can also set the variable globally. | |
351 | |
352 This option is enabled by default because it reduces Emacs memory usage.") | |
353 | |
354 (defvar byte-optimize-log nil | |
355 "*If true, the byte-compiler will log its optimizations into *Compile-Log*. | |
356 If this is 'source, then only source-level optimizations will be logged. | |
357 If it is 'byte, then only byte-level optimizations will be logged.") | |
358 | |
359 (defvar byte-compile-error-on-warn nil | |
360 "*If true, the byte-compiler reports warnings with `error'.") | |
361 | |
362 ;; byte-compile-warning-types in FSF. | |
363 (defvar byte-compile-default-warnings | |
364 '(redefine callargs subr-callargs free-vars unresolved unused-vars obsolete) | |
365 "*The warnings used when byte-compile-warnings is t.") | |
366 | |
367 (defvar byte-compile-warnings t | |
368 "*List of warnings that the compiler should issue (t for the default set). | |
369 Elements of the list may be: | |
370 | |
371 free-vars references to variables not in the current lexical scope. | |
372 unused-vars references to non-global variables bound but not referenced. | |
373 unresolved calls to unknown functions. | |
374 callargs lambda calls with args that don't match the definition. | |
375 subr-callargs calls to subrs with args that don't match the definition. | |
376 redefine function cell redefined from a macro to a lambda or vice | |
377 versa, or redefined to take a different number of arguments. | |
378 obsolete use of an obsolete function or variable. | |
379 pedantic warn of use of compatible symbols. | |
380 | |
381 The default set is specified by `byte-compile-default-warnings' and | |
382 normally encompasses all possible warnings. | |
383 | |
384 See also the macro `byte-compiler-options'.") | |
385 | |
386 (defvar byte-compile-generate-call-tree nil | |
387 "*Non-nil means collect call-graph information when compiling. | |
388 This records functions that were called and from where. | |
389 If the value is t, compilation displays the call graph when it finishes. | |
390 If the value is neither t nor nil, compilation asks you whether to display | |
391 the graph. | |
392 | |
393 The call tree only lists functions called, not macros used. Those functions | |
394 which the byte-code interpreter knows about directly (eq, cons, etc.) are | |
395 not reported. | |
396 | |
397 The call tree also lists those functions which are not known to be called | |
398 \(that is, to which no calls have been compiled). Functions which can be | |
399 invoked interactively are excluded from this list.") | |
400 | |
401 (defconst byte-compile-call-tree nil "Alist of functions and their call tree. | |
402 Each element looks like | |
403 | |
404 \(FUNCTION CALLERS CALLS\) | |
405 | |
406 where CALLERS is a list of functions that call FUNCTION, and CALLS | |
407 is a list of functions for which calls were generated while compiling | |
408 FUNCTION.") | |
409 | |
410 (defvar byte-compile-call-tree-sort 'name | |
411 "*If non-nil, sort the call tree. | |
412 The values `name', `callers', `calls', `calls+callers' | |
413 specify different fields to sort on.") | |
414 | |
415 (defvar byte-compile-overwrite-file t | |
416 "If nil, old .elc files are deleted before the new is saved, and .elc | |
417 files will have the same modes as the corresponding .el file. Otherwise, | |
418 existing .elc files will simply be overwritten, and the existing modes | |
419 will not be changed. If this variable is nil, then an .elc file which | |
420 is a symbolic link will be turned into a normal file, instead of the file | |
421 which the link points to being overwritten.") | |
422 | |
423 (defvar byte-recompile-directory-ignore-errors-p nil | |
424 "If true, then `byte-recompile-directory' will continue compiling even | |
425 when an error occurs in a file. This is bound to t by | |
426 `batch-byte-recompile-directory'.") | |
427 | |
502 | 428 (defvar byte-recompile-ignore-uncompilable-mule-files t |
429 "If non-nil, `byte-recompile-*' ignores non-ASCII .el files in a non-Mule | |
430 XEmacs. This assumes that such files have a -*- coding: ??? -*- magic | |
431 cookie in their first line or a ;;;###coding system: magic cookie | |
432 early in the file.") | |
433 | |
428 | 434 (defvar byte-recompile-directory-recursively t |
435 "*If true, then `byte-recompile-directory' will recurse on subdirectories.") | |
436 | |
437 (defvar byte-compile-constants nil | |
438 "list of all constants encountered during compilation of this form") | |
439 (defvar byte-compile-variables nil | |
440 "list of all variables encountered during compilation of this form") | |
441 (defvar byte-compile-bound-variables nil | |
442 "Alist of variables bound in the context of the current form, | |
443 that is, the current lexical environment. This list lives partly | |
444 on the specbind stack. The cdr of each cell is an integer bitmask.") | |
445 | |
4623
a9f83990e6bf
Fix a byte compiler bug with characters above ?\xFF.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4539
diff
changeset
|
446 (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
|
447 "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
|
448 |
a9f83990e6bf
Fix a byte compiler bug with characters above ?\xFF.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4539
diff
changeset
|
449 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
|
450 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
|
451 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
|
452 |
428 | 453 (defconst byte-compile-referenced-bit 1) |
454 (defconst byte-compile-assigned-bit 2) | |
455 (defconst byte-compile-arglist-bit 4) | |
456 (defconst byte-compile-global-bit 8) | |
457 | |
458 (defvar byte-compile-free-references) | |
459 (defvar byte-compile-free-assignments) | |
460 | |
461 (defvar byte-compiler-error-flag) | |
462 | |
446 | 463 ;;; A form of eval that includes the currently defined macro definitions. |
464 ;;; This helps implement the promise made in the Lispref: | |
465 ;;; | |
466 ;;; "If a file being compiled contains a `defmacro' form, the macro is | |
467 ;;; defined temporarily for the rest of the compilation of that file." | |
468 (defun byte-compile-eval (form) | |
469 (let ((save-macro-environment nil)) | |
470 (unwind-protect | |
471 (loop for (sym . def) in byte-compile-macro-environment do | |
472 (push | |
473 (if (fboundp sym) (cons sym (symbol-function sym)) sym) | |
474 save-macro-environment) | |
475 (fset sym (cons 'macro def)) | |
476 finally return (eval form)) | |
477 (dolist (elt save-macro-environment) | |
478 (if (symbolp elt) | |
479 (fmakunbound elt) | |
480 (fset (car elt) (cdr elt))))))) | |
481 | |
428 | 482 (defconst byte-compile-initial-macro-environment |
444 | 483 '((byte-compiler-options . (lambda (&rest forms) |
484 (apply 'byte-compiler-options-handler forms))) | |
485 (eval-when-compile . (lambda (&rest body) | |
446 | 486 (list 'quote (byte-compile-eval (cons 'progn body))))) |
444 | 487 (eval-and-compile . (lambda (&rest body) |
446 | 488 (byte-compile-eval (cons 'progn body)) |
444 | 489 (cons 'progn body)))) |
428 | 490 "The default macro-environment passed to macroexpand by the compiler. |
491 Placing a macro here will cause a macro to have different semantics when | |
492 expanded by the compiler as when expanded by the interpreter.") | |
493 | |
494 (defvar byte-compile-macro-environment byte-compile-initial-macro-environment | |
495 "Alist of macros defined in the file being compiled. | |
496 Each element looks like (MACRONAME . DEFINITION). It is | |
497 \(MACRONAME . nil) when a macro is redefined as a function.") | |
498 | |
499 (defvar byte-compile-function-environment nil | |
500 "Alist of functions defined in the file being compiled. | |
501 This is so we can inline them when necessary. | |
502 Each element looks like (FUNCTIONNAME . DEFINITION). It is | |
503 \(FUNCTIONNAME . nil) when a function is redefined as a macro.") | |
504 | |
505 (defvar byte-compile-autoload-environment nil | |
506 "Alist of functions and macros defined by autoload in the file being compiled. | |
507 This is so we can suppress warnings about calls to these functions, even though | |
508 they do not have `real' definitions. | |
509 Each element looks like (FUNCTIONNAME . CALL-TO-AUTOLOAD).") | |
510 | |
511 (defvar byte-compile-unresolved-functions nil | |
512 "Alist of undefined functions to which calls have been compiled (used for | |
513 warnings when the function is later defined with incorrect args).") | |
514 | |
515 (defvar byte-compile-file-domain) ; domain of file being compiled | |
516 | |
517 (defvar byte-compile-tag-number 0) | |
518 (defvar byte-compile-output nil | |
519 "Alist describing contents to put in byte code string. | |
520 Each element is (INDEX . VALUE)") | |
521 (defvar byte-compile-depth 0 "Current depth of execution stack.") | |
522 (defvar byte-compile-maxdepth 0 "Maximum depth of execution stack.") | |
523 | |
524 | |
525 ;;; The byte codes; this information is duplicated in bytecode.c | |
526 | |
527 (defconst byte-code-vector nil | |
528 "An array containing byte-code names indexed by byte-code values.") | |
529 | |
530 (defconst byte-stack+-info nil | |
531 "An array with the stack adjustment for each byte-code.") | |
532 | |
533 (defmacro byte-defop (opcode stack-adjust opname &optional docstring) | |
534 ;; This is a speed-hack for building the byte-code-vector at compile-time. | |
535 ;; We fill in the vector at macroexpand-time, and then after the last call | |
536 ;; to byte-defop, we write the vector out as a constant instead of writing | |
537 ;; out a bunch of calls to aset. | |
538 ;; Actually, we don't fill in the vector itself, because that could make | |
539 ;; it problematic to compile big changes to this compiler; we store the | |
540 ;; values on its plist, and remove them later in -extrude. | |
541 (let ((v1 (or (get 'byte-code-vector 'tmp-compile-time-value) | |
542 (put 'byte-code-vector 'tmp-compile-time-value | |
543 (make-vector 256 nil)))) | |
544 (v2 (or (get 'byte-stack+-info 'tmp-compile-time-value) | |
545 (put 'byte-stack+-info 'tmp-compile-time-value | |
546 (make-vector 256 nil))))) | |
547 (aset v1 opcode opname) | |
548 (aset v2 opcode stack-adjust)) | |
549 (if docstring | |
550 (list 'defconst opname opcode (concat "Byte code opcode " docstring ".")) | |
551 (list 'defconst opname opcode))) | |
552 | |
553 (defmacro byte-extrude-byte-code-vectors () | |
554 (prog1 (list 'setq 'byte-code-vector | |
555 (get 'byte-code-vector 'tmp-compile-time-value) | |
556 'byte-stack+-info | |
557 (get 'byte-stack+-info 'tmp-compile-time-value)) | |
558 (remprop 'byte-code-vector 'tmp-compile-time-value) | |
559 (remprop 'byte-stack+-info 'tmp-compile-time-value))) | |
560 | |
561 | |
562 ;; unused: 0-7 | |
563 | |
564 ;; These opcodes are special in that they pack their argument into the | |
565 ;; opcode word. | |
566 ;; | |
567 (byte-defop 8 1 byte-varref "for variable reference") | |
568 (byte-defop 16 -1 byte-varset "for setting a variable") | |
569 (byte-defop 24 -1 byte-varbind "for binding a variable") | |
570 (byte-defop 32 0 byte-call "for calling a function") | |
571 (byte-defop 40 0 byte-unbind "for unbinding special bindings") | |
572 ;; codes 8-47 are consumed by the preceding opcodes | |
573 | |
574 ;; unused: 48-55 | |
575 | |
576 (byte-defop 56 -1 byte-nth) | |
577 (byte-defop 57 0 byte-symbolp) | |
578 (byte-defop 58 0 byte-consp) | |
579 (byte-defop 59 0 byte-stringp) | |
580 (byte-defop 60 0 byte-listp) | |
581 (byte-defop 61 -1 byte-old-eq) | |
582 (byte-defop 62 -1 byte-old-memq) | |
583 (byte-defop 63 0 byte-not) | |
584 (byte-defop 64 0 byte-car) | |
585 (byte-defop 65 0 byte-cdr) | |
586 (byte-defop 66 -1 byte-cons) | |
587 (byte-defop 67 0 byte-list1) | |
588 (byte-defop 68 -1 byte-list2) | |
589 (byte-defop 69 -2 byte-list3) | |
590 (byte-defop 70 -3 byte-list4) | |
591 (byte-defop 71 0 byte-length) | |
592 (byte-defop 72 -1 byte-aref) | |
593 (byte-defop 73 -2 byte-aset) | |
594 (byte-defop 74 0 byte-symbol-value) | |
595 (byte-defop 75 0 byte-symbol-function) ; this was commented out | |
596 (byte-defop 76 -1 byte-set) | |
597 (byte-defop 77 -1 byte-fset) ; this was commented out | |
598 (byte-defop 78 -1 byte-get) | |
599 (byte-defop 79 -2 byte-substring) | |
600 (byte-defop 80 -1 byte-concat2) | |
601 (byte-defop 81 -2 byte-concat3) | |
602 (byte-defop 82 -3 byte-concat4) | |
603 (byte-defop 83 0 byte-sub1) | |
604 (byte-defop 84 0 byte-add1) | |
605 (byte-defop 85 -1 byte-eqlsign) | |
606 (byte-defop 86 -1 byte-gtr) | |
607 (byte-defop 87 -1 byte-lss) | |
608 (byte-defop 88 -1 byte-leq) | |
609 (byte-defop 89 -1 byte-geq) | |
610 (byte-defop 90 -1 byte-diff) | |
611 (byte-defop 91 0 byte-negate) | |
612 (byte-defop 92 -1 byte-plus) | |
613 (byte-defop 93 -1 byte-max) | |
614 (byte-defop 94 -1 byte-min) | |
615 (byte-defop 95 -1 byte-mult) | |
616 (byte-defop 96 1 byte-point) | |
617 (byte-defop 97 -1 byte-eq) ; new as of v20 | |
618 (byte-defop 98 0 byte-goto-char) | |
619 (byte-defop 99 0 byte-insert) | |
620 (byte-defop 100 1 byte-point-max) | |
621 (byte-defop 101 1 byte-point-min) | |
622 (byte-defop 102 0 byte-char-after) | |
623 (byte-defop 103 1 byte-following-char) | |
624 (byte-defop 104 1 byte-preceding-char) | |
625 (byte-defop 105 1 byte-current-column) | |
626 (byte-defop 106 0 byte-indent-to) | |
627 (byte-defop 107 -1 byte-equal) ; new as of v20 | |
628 (byte-defop 108 1 byte-eolp) | |
629 (byte-defop 109 1 byte-eobp) | |
630 (byte-defop 110 1 byte-bolp) | |
631 (byte-defop 111 1 byte-bobp) | |
632 (byte-defop 112 1 byte-current-buffer) | |
633 (byte-defop 113 0 byte-set-buffer) | |
634 (byte-defop 114 0 byte-save-current-buffer | |
635 "To make a binding to record the current buffer.") | |
636 ;;(byte-defop 114 1 byte-read-char-OBSOLETE) ;obsolete as of v19 | |
637 (byte-defop 115 -1 byte-memq) ; new as of v20 | |
638 (byte-defop 116 1 byte-interactive-p) | |
639 | |
640 (byte-defop 117 0 byte-forward-char) | |
641 (byte-defop 118 0 byte-forward-word) | |
642 (byte-defop 119 -1 byte-skip-chars-forward) | |
643 (byte-defop 120 -1 byte-skip-chars-backward) | |
644 (byte-defop 121 0 byte-forward-line) | |
645 (byte-defop 122 0 byte-char-syntax) | |
646 (byte-defop 123 -1 byte-buffer-substring) | |
647 (byte-defop 124 -1 byte-delete-region) | |
648 (byte-defop 125 -1 byte-narrow-to-region) | |
649 (byte-defop 126 1 byte-widen) | |
650 (byte-defop 127 0 byte-end-of-line) | |
651 | |
652 ;; unused: 128 | |
653 | |
654 ;; These store their argument in the next two bytes | |
655 (byte-defop 129 1 byte-constant2 | |
656 "for reference to a constant with vector index >= byte-constant-limit") | |
657 (byte-defop 130 0 byte-goto "for unconditional jump") | |
658 (byte-defop 131 -1 byte-goto-if-nil "to pop value and jump if it's nil") | |
659 (byte-defop 132 -1 byte-goto-if-not-nil | |
660 "to pop value and jump if it's not nil") | |
661 (byte-defop 133 -1 byte-goto-if-nil-else-pop | |
662 "to examine top-of-stack, jump and don't pop it if it's nil, | |
663 otherwise pop it") | |
664 (byte-defop 134 -1 byte-goto-if-not-nil-else-pop | |
665 "to examine top-of-stack, jump and don't pop it if it's non-nil, | |
666 otherwise pop it") | |
667 | |
668 (byte-defop 135 -1 byte-return "to pop a value and return it from `byte-code'") | |
669 (byte-defop 136 -1 byte-discard "to discard one value from stack") | |
670 (byte-defop 137 1 byte-dup "to duplicate the top of the stack") | |
671 | |
672 (byte-defop 138 0 byte-save-excursion | |
673 "to make a binding to record the buffer, point and mark") | |
674 (byte-defop 139 0 byte-save-window-excursion | |
675 "to make a binding to record entire window configuration") | |
676 (byte-defop 140 0 byte-save-restriction | |
677 "to make a binding to record the current buffer clipping restrictions") | |
678 (byte-defop 141 -1 byte-catch | |
679 "for catch. Takes, on stack, the tag and an expression for the body") | |
680 (byte-defop 142 -1 byte-unwind-protect | |
681 "for unwind-protect. Takes, on stack, an expression for the unwind-action") | |
682 | |
683 ;; For condition-case. Takes, on stack, the variable to bind, | |
684 ;; an expression for the body, and a list of clauses. | |
685 (byte-defop 143 -2 byte-condition-case) | |
686 | |
687 ;; For entry to with-output-to-temp-buffer. | |
688 ;; Takes, on stack, the buffer name. | |
689 ;; Binds standard-output and does some other things. | |
690 ;; Returns with temp buffer on the stack in place of buffer name. | |
691 (byte-defop 144 0 byte-temp-output-buffer-setup) | |
692 | |
693 ;; For exit from with-output-to-temp-buffer. | |
694 ;; Expects the temp buffer on the stack underneath value to return. | |
695 ;; Pops them both, then pushes the value back on. | |
696 ;; Unbinds standard-output and makes the temp buffer visible. | |
697 (byte-defop 145 -1 byte-temp-output-buffer-show) | |
698 | |
699 ;; To unbind back to the beginning of this frame. | |
700 ;; Not used yet, but will be needed for tail-recursion elimination. | |
701 (byte-defop 146 0 byte-unbind-all) | |
702 | |
703 (byte-defop 147 -2 byte-set-marker) | |
704 (byte-defop 148 0 byte-match-beginning) | |
705 (byte-defop 149 0 byte-match-end) | |
706 (byte-defop 150 0 byte-upcase) | |
707 (byte-defop 151 0 byte-downcase) | |
708 (byte-defop 152 -1 byte-string=) | |
709 (byte-defop 153 -1 byte-string<) | |
710 (byte-defop 154 -1 byte-old-equal) | |
711 (byte-defop 155 -1 byte-nthcdr) | |
712 (byte-defop 156 -1 byte-elt) | |
713 (byte-defop 157 -1 byte-old-member) | |
714 (byte-defop 158 -1 byte-old-assq) | |
715 (byte-defop 159 0 byte-nreverse) | |
716 (byte-defop 160 -1 byte-setcar) | |
717 (byte-defop 161 -1 byte-setcdr) | |
718 (byte-defop 162 0 byte-car-safe) | |
719 (byte-defop 163 0 byte-cdr-safe) | |
720 (byte-defop 164 -1 byte-nconc) | |
721 (byte-defop 165 -1 byte-quo) | |
722 (byte-defop 166 -1 byte-rem) | |
723 (byte-defop 167 0 byte-numberp) | |
724 (byte-defop 168 0 byte-integerp) | |
725 | |
726 ;; unused: 169 | |
727 | |
728 ;; These are not present in FSF. | |
729 ;; | |
730 (byte-defop 170 0 byte-rel-goto) | |
731 (byte-defop 171 -1 byte-rel-goto-if-nil) | |
732 (byte-defop 172 -1 byte-rel-goto-if-not-nil) | |
733 (byte-defop 173 -1 byte-rel-goto-if-nil-else-pop) | |
734 (byte-defop 174 -1 byte-rel-goto-if-not-nil-else-pop) | |
735 | |
736 (byte-defop 175 nil byte-listN) | |
737 (byte-defop 176 nil byte-concatN) | |
738 (byte-defop 177 nil byte-insertN) | |
739 | |
4677
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4639
diff
changeset
|
740 (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
|
741 (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
|
742 (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
|
743 (byte-defop 181 -1 byte-throw) |
428 | 744 |
745 ;; these ops are new to v20 | |
746 (byte-defop 182 -1 byte-member) | |
747 (byte-defop 183 -1 byte-assq) | |
748 | |
749 ;; unused: 184-191 | |
750 | |
751 (byte-defop 192 1 byte-constant "for reference to a constant") | |
752 ;; codes 193-255 are consumed by byte-constant. | |
753 (defconst byte-constant-limit 64 | |
754 "Exclusive maximum index usable in the `byte-constant' opcode.") | |
755 | |
444 | 756 (defconst byte-goto-ops |
757 '(byte-goto byte-goto-if-nil byte-goto-if-not-nil | |
758 byte-goto-if-nil-else-pop | |
759 byte-goto-if-not-nil-else-pop) | |
428 | 760 "List of byte-codes whose offset is a pc.") |
761 | |
762 (defconst byte-goto-always-pop-ops | |
444 | 763 '(byte-goto-if-nil byte-goto-if-not-nil)) |
428 | 764 |
765 (defconst byte-rel-goto-ops | |
444 | 766 '(byte-rel-goto byte-rel-goto-if-nil byte-rel-goto-if-not-nil |
767 byte-rel-goto-if-nil-else-pop byte-rel-goto-if-not-nil-else-pop) | |
428 | 768 "byte-codes for relative jumps.") |
769 | |
770 (byte-extrude-byte-code-vectors) | |
771 | |
772 ;;; lapcode generator | |
773 ;;; | |
774 ;;; the byte-compiler now does source -> lapcode -> bytecode instead of | |
775 ;;; source -> bytecode, because it's a lot easier to make optimizations | |
776 ;;; on lapcode than on bytecode. | |
777 ;;; | |
778 ;;; Elements of the lapcode list are of the form (<instruction> . <parameter>) | |
779 ;;; where instruction is a symbol naming a byte-code instruction, | |
780 ;;; and parameter is an argument to that instruction, if any. | |
781 ;;; | |
782 ;;; The instruction can be the pseudo-op TAG, which means that this position | |
783 ;;; in the instruction stream is a target of a goto. (car PARAMETER) will be | |
784 ;;; the PC for this location, and the whole instruction "(TAG pc)" will be the | |
785 ;;; parameter for some goto op. | |
786 ;;; | |
787 ;;; If the operation is varbind, varref, varset or push-constant, then the | |
788 ;;; parameter is (variable/constant . index_in_constant_vector). | |
789 ;;; | |
790 ;;; First, the source code is macroexpanded and optimized in various ways. | |
791 ;;; Then the resultant code is compiled into lapcode. Another set of | |
792 ;;; optimizations are then run over the lapcode. Then the variables and | |
793 ;;; constants referenced by the lapcode are collected and placed in the | |
794 ;;; constants-vector. (This happens now so that variables referenced by dead | |
795 ;;; code don't consume space.) And finally, the lapcode is transformed into | |
796 ;;; compacted byte-code. | |
797 ;;; | |
798 ;;; A distinction is made between variables and constants because the variable- | |
799 ;;; referencing instructions are more sensitive to the variables being near the | |
800 ;;; front of the constants-vector than the constant-referencing instructions. | |
801 ;;; Also, this lets us notice references to free variables. | |
802 | |
803 (defun byte-compile-lapcode (lap) | |
804 "Turns lapcode into bytecode. The lapcode is destroyed." | |
805 ;; Lapcode modifications: changes the ID of a tag to be the tag's PC. | |
806 (let ((pc 0) ; Program counter | |
807 op off ; Operation & offset | |
808 (bytes '()) ; Put the output bytes here | |
809 (patchlist nil) ; List of tags and goto's to patch | |
810 rest rel tmp) | |
811 (while lap | |
812 (setq op (car (car lap)) | |
813 off (cdr (car lap))) | |
814 (cond ((not (symbolp op)) | |
815 (error "Non-symbolic opcode `%s'" op)) | |
816 ((eq op 'TAG) | |
817 (setcar off pc) | |
818 (push off patchlist)) | |
819 ((memq op byte-goto-ops) | |
820 (setq pc (+ pc 3)) | |
821 (setq bytes (cons (cons pc (cdr off)) | |
822 (cons nil | |
823 (cons (symbol-value op) bytes)))) | |
824 (push bytes patchlist)) | |
825 (t | |
826 (setq bytes | |
827 (cond ((cond ((consp off) | |
828 ;; Variable or constant reference | |
829 (setq off (cdr off)) | |
830 (eq op 'byte-constant))) | |
831 (cond ((< off byte-constant-limit) | |
832 (setq pc (1+ pc)) | |
833 (cons (+ byte-constant off) bytes)) | |
834 (t | |
835 (setq pc (+ 3 pc)) | |
836 (cons (lsh off -8) | |
837 (cons (logand off 255) | |
838 (cons byte-constant2 bytes)))))) | |
839 ((and (<= byte-listN (symbol-value op)) | |
840 (<= (symbol-value op) byte-insertN)) | |
841 (setq pc (+ 2 pc)) | |
842 (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
|
843 ((= 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
|
844 (setq pc (1+ pc)) |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4639
diff
changeset
|
845 ;; Ignore off. |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4639
diff
changeset
|
846 (cons (symbol-value op) bytes)) |
428 | 847 ((< off 6) |
848 (setq pc (1+ pc)) | |
849 (cons (+ (symbol-value op) off) bytes)) | |
850 ((< off 256) | |
851 (setq pc (+ 2 pc)) | |
852 (cons off (cons (+ (symbol-value op) 6) bytes))) | |
853 (t | |
854 (setq pc (+ 3 pc)) | |
855 (cons (lsh off -8) | |
856 (cons (logand off 255) | |
857 (cons (+ (symbol-value op) 7) | |
858 bytes)))))))) | |
859 (setq lap (cdr lap))) | |
860 ;;(if (not (= pc (length bytes))) | |
861 ;; (error "Compiler error: pc mismatch - %s %s" pc (length bytes))) | |
862 (cond (t ;; starting with Emacs 19. | |
863 ;; Make relative jumps | |
864 (setq patchlist (nreverse patchlist)) | |
865 (while (progn | |
866 (setq off 0) ; PC change because of deleted bytes | |
867 (setq rest patchlist) | |
868 (while rest | |
869 (setq tmp (car rest)) | |
870 (and (consp (car tmp)) ; Jump | |
871 (prog1 (null (nth 1 tmp)) ; Absolute jump | |
872 (setq tmp (car tmp))) | |
873 (progn | |
874 (setq rel (- (car (cdr tmp)) (car tmp))) | |
875 (and (<= -129 rel) (< rel 128))) | |
876 (progn | |
877 ;; Convert to relative jump. | |
878 (setcdr (car rest) (cdr (cdr (car rest)))) | |
879 (setcar (cdr (car rest)) | |
880 (+ (car (cdr (car rest))) | |
881 (- byte-rel-goto byte-goto))) | |
882 (setq off (1- off)))) | |
883 (setcar tmp (+ (car tmp) off)) ; Adjust PC | |
884 (setq rest (cdr rest))) | |
885 ;; If optimizing, repeat until no change. | |
886 (and byte-optimize | |
887 (not (zerop off))))))) | |
888 ;; Patch PC into jumps | |
889 (let (bytes) | |
890 (while patchlist | |
891 (setq bytes (car patchlist)) | |
892 (cond ((atom (car bytes))) ; Tag | |
893 ((nth 1 bytes) ; Relative jump | |
894 (setcar bytes (+ (- (car (cdr (car bytes))) (car (car bytes))) | |
895 128))) | |
896 (t ; Absolute jump | |
897 (setq pc (car (cdr (car bytes)))) ; Pick PC from tag | |
898 (setcar (cdr bytes) (logand pc 255)) | |
899 (setcar bytes (lsh pc -8)))) | |
900 (setq patchlist (cdr patchlist)))) | |
901 (concat (nreverse bytes)))) | |
902 | |
903 | |
904 ;;; byte compiler messages | |
905 | |
906 (defvar byte-compile-current-form nil) | |
907 (defvar byte-compile-current-file nil) | |
908 (defvar byte-compile-dest-file nil) | |
909 | |
910 (defmacro byte-compile-log (format-string &rest args) | |
911 `(when (and byte-optimize (memq byte-optimize-log '(t source))) | |
912 (let ((print-escape-newlines t) | |
913 (print-level 4) | |
914 (print-length 4)) | |
915 (byte-compile-log-1 (format ,format-string ,@args))))) | |
916 | |
917 (defconst byte-compile-last-warned-form 'nothing) | |
918 | |
919 ;; Log a message STRING in *Compile-Log*. | |
920 ;; Also log the current function and file if not already done. | |
921 (defun byte-compile-log-1 (string &optional fill) | |
922 (let* ((this-form (or byte-compile-current-form "toplevel forms")) | |
923 (while-compiling-msg | |
924 (when (or byte-compile-current-file | |
925 (not (eq this-form byte-compile-last-warned-form))) | |
926 (format | |
927 "While compiling %s%s:" | |
928 this-form | |
929 (cond | |
930 ((stringp byte-compile-current-file) | |
931 (concat " in file " byte-compile-current-file)) | |
932 ((bufferp byte-compile-current-file) | |
933 (concat " in buffer " | |
934 (buffer-name byte-compile-current-file))) | |
935 ("")))))) | |
936 (if noninteractive | |
937 (progn | |
938 (when while-compiling-msg (message "%s" while-compiling-msg)) | |
939 (message " %s" string)) | |
940 (with-current-buffer (get-buffer-create "*Compile-Log*") | |
941 (goto-char (point-max)) | |
942 (when byte-compile-current-file | |
943 (when (> (point-max) (point-min)) | |
944 (insert "\n\^L\n")) | |
945 (insert (current-time-string) "\n")) | |
946 (when while-compiling-msg (insert while-compiling-msg "\n")) | |
947 (insert " " string "\n") | |
948 (when (and fill (not (string-match "\n" string))) | |
949 (let ((fill-prefix " ") | |
950 (fill-column 78)) | |
951 (fill-paragraph nil))))) | |
952 (setq byte-compile-current-file nil) | |
953 (setq byte-compile-last-warned-form this-form))) | |
954 | |
955 ;; Log the start of a file in *Compile-Log*, and mark it as done. | |
956 ;; But do nothing in batch mode. | |
957 (defun byte-compile-log-file () | |
958 (when (and byte-compile-current-file (not noninteractive)) | |
959 (with-current-buffer (get-buffer-create "*Compile-Log*") | |
960 (when (> (point-max) (point-min)) | |
961 (goto-char (point-max)) | |
962 (insert "\n\^L\n")) | |
963 (insert "Compiling " | |
964 (if (stringp byte-compile-current-file) | |
965 (concat "file " byte-compile-current-file) | |
966 (concat "buffer " (buffer-name byte-compile-current-file))) | |
967 " at " (current-time-string) "\n") | |
968 (setq byte-compile-current-file nil)))) | |
969 | |
502 | 970 (defvar byte-compile-inbuffer) |
971 (defvar byte-compile-outbuffer) | |
972 | |
428 | 973 (defun byte-compile-warn (format &rest args) |
974 (setq format (apply 'format format args)) | |
975 (if byte-compile-error-on-warn | |
976 (error "%s" format) ; byte-compile-file catches and logs it | |
977 (byte-compile-log-1 (concat "** " format) t) | |
502 | 978 |
979 ;; This was a first attempt to add line numbers to the | |
980 ;; byte-compilation output. Unfortunately, it doesn't work | |
981 ;; perfectly: it reports the line number at the end of the form | |
982 ;; (which may be an entire function), rather than the line number | |
983 ;; of the actual problem. Doing this right is hard because we | |
984 ;; currently use the built-in Lisp parser to parse the entire form | |
985 ;; at once. What we basically need is a whole separate parser | |
986 ;; that annotates its output with line numbers. For example, we | |
987 ;; might modify the parser in lread.c so that, with the right | |
988 ;; option set, it replaces every Lisp object contained in the | |
989 ;; structure it returns with a cons of that object and the line | |
990 ;; number it was found on (determined by counting newlines, | |
991 ;; starting from some arbitrary point). You then have two | |
992 ;; options: (a) Modify the byte compiler so that everything that | |
993 ;; compiles a form deals with the new annotated form rather than | |
994 ;; the old one, or (b) The byte compiler saves this structure | |
995 ;; while converting it into a normal structure that's given to the | |
996 ;; various form handlers, which need no (or less) modification. | |
997 ;; In the former case, finding the line number is trivial because | |
998 ;; it's in the form. In the latter case, finding the line number | |
999 ;; depends on having a unique Lisp object that can be looked up in | |
1000 ;; the annotated structure -- i.e. a list, vector, or string. | |
1001 ;; You'd have to look at the various places where errors are spit | |
1002 ;; out (not very many, really), and make sure that such a unique | |
1003 ;; object is available. Then you do a depth-first search through | |
1004 ;; the annotated structure to find the object. | |
1005 ;; | |
1006 ;; An alternative way of doing (b) that's probably much more | |
1007 ;; efficient (and easier to implement) is simply to have the | |
1008 ;; parser in lread.c annotate every unique object using a separate | |
1009 ;; hash table. This also eliminates the need for a search to find | |
1010 ;; the line number. In order to be fine-grained enough to get at | |
1011 ;; every symbol in a form -- e.g. if we want to pinpoint a | |
1012 ;; particular undefined variable in a function call -- we need to | |
1013 ;; annotate every cons, not just each list. We still have | |
1014 ;; (probably unimportant) problems with vectors, since all we have | |
1015 ;; is the start of the vector. If we cared about this, we could | |
1016 ;; store in the hash table a list of the line numbers for each | |
1017 ;; item in the vector, not just its start. | |
1018 ;; | |
1019 ;; --ben | |
1020 | |
1021 ; (byte-compile-log-1 (concat "** line: " | |
1022 ; (save-excursion | |
1023 ; (set-buffer byte-compile-inbuffer) | |
1024 ; (int-to-string (line-number))) | |
1025 ; " " | |
1026 ; format) t) | |
428 | 1027 ;;; RMS says: |
1028 ;;; It is useless to flash warnings too fast to be read. | |
1029 ;;; Besides, they will all be shown at the end. | |
1030 ;;; and comments out the next two lines. | |
1031 (or noninteractive ; already written on stdout. | |
1032 (message "Warning: %s" format)))) | |
1033 | |
1034 ;;; This function should be used to report errors that have halted | |
1035 ;;; compilation of the current file. | |
1036 (defun byte-compile-report-error (error-info) | |
1037 (setq byte-compiler-error-flag t) | |
1038 (byte-compile-log-1 | |
1039 (concat "!! " | |
1040 (format (if (cdr error-info) "%s (%s)" "%s") | |
1041 (get (car error-info) 'error-message) | |
442 | 1042 (prin1-to-string (cdr error-info))))) |
1043 (if stack-trace-on-error | |
1044 (backtrace nil t))) | |
428 | 1045 |
1046 ;;; Used by make-obsolete. | |
1047 (defun byte-compile-obsolete (form) | |
1048 (let ((new (get (car form) 'byte-obsolete-info))) | |
1049 (if (memq 'obsolete byte-compile-warnings) | |
1050 (byte-compile-warn "%s is an obsolete function; %s" (car form) | |
1051 (if (stringp (car new)) | |
1052 (car new) | |
1053 (format "use %s instead." (car new))))) | |
1054 (funcall (or (cdr new) 'byte-compile-normal-call) form))) | |
1055 | |
1056 ;;; Used by make-obsolete. | |
1057 (defun byte-compile-compatible (form) | |
1058 (let ((new (get (car form) 'byte-compatible-info))) | |
1059 (if (memq 'pedantic byte-compile-warnings) | |
1060 (byte-compile-warn "%s is provided for compatibility; %s" (car form) | |
1061 (if (stringp (car new)) | |
1062 (car new) | |
1063 (format "use %s instead." (car new))))) | |
1064 (funcall (or (cdr new) 'byte-compile-normal-call) form))) | |
1065 | |
1066 ;; Compiler options | |
1067 | |
1068 (defconst byte-compiler-legal-options | |
1069 '((optimize byte-optimize (t nil source byte) val) | |
1070 (file-format byte-compile-emacs19-compatibility (emacs19 emacs20) | |
1071 (eq val 'emacs19)) | |
1072 (delete-errors byte-compile-delete-errors (t nil) val) | |
1073 (verbose byte-compile-verbose (t nil) val) | |
1074 (new-bytecodes byte-compile-new-bytecodes (t nil) val) | |
1075 (warnings byte-compile-warnings | |
1076 ((callargs subr-callargs redefine free-vars unused-vars unresolved)) | |
1077 val))) | |
1078 | |
1079 ;; XEmacs addition | |
1080 (defconst byte-compiler-obsolete-options | |
1081 '((new-bytecodes t))) | |
1082 | |
1083 ;; Inhibit v19/v20 selectors if the version is hardcoded. | |
1084 ;; #### This should print a warning if the user tries to change something | |
1085 ;; than can't be changed because the running compiler doesn't support it. | |
1086 (cond | |
1087 ((byte-compile-single-version) | |
1088 (setcar (cdr (cdr (assq 'file-format byte-compiler-legal-options))) | |
1089 (if (byte-compile-version-cond byte-compile-emacs19-compatibility) | |
1090 '(emacs19) '(emacs20))))) | |
1091 | |
1092 ;; now we can copy it. | |
444 | 1093 (setq byte-compiler-legal-options byte-compiler-legal-options) |
428 | 1094 |
1095 (defun byte-compiler-options-handler (&rest args) | |
1096 (let (key val desc choices) | |
1097 (while args | |
1098 (if (or (atom (car args)) (nthcdr 2 (car args)) (null (cdr (car args)))) | |
1099 (error "malformed byte-compiler-option %s" (car args))) | |
1100 (setq key (car (car args)) | |
1101 val (car (cdr (car args))) | |
1102 desc (assq key byte-compiler-legal-options)) | |
1103 (or desc | |
1104 (error "unknown byte-compiler option %s" key)) | |
1105 (if (assq key byte-compiler-obsolete-options) | |
1106 (byte-compile-warn "%s is an obsolete byte-compiler option." key)) | |
1107 (setq choices (nth 2 desc)) | |
1108 (if (consp (car choices)) | |
1109 (let* (this | |
1110 (handler 'cons) | |
1111 (var (nth 1 desc)) | |
1112 (ret (and (memq (car val) '(+ -)) | |
1113 (copy-sequence (if (eq t (symbol-value var)) | |
1114 (car choices) | |
1115 (symbol-value var)))))) | |
1116 (setq choices (car choices)) | |
1117 (while val | |
1118 (setq this (car val)) | |
1119 (cond ((memq this choices) | |
1120 (setq ret (funcall handler this ret))) | |
1121 ((eq this '+) (setq handler 'cons)) | |
1122 ((eq this '-) (setq handler 'delq)) | |
1123 ((error "%s only accepts %s." key choices))) | |
1124 (setq val (cdr val))) | |
1125 (set (nth 1 desc) ret)) | |
1126 (or (memq val choices) | |
1127 (error "%s must be one of %s." key choices)) | |
1128 (set (nth 1 desc) (eval (nth 3 desc)))) | |
1129 (setq args (cdr args))) | |
1130 nil)) | |
1131 | |
1132 ;;; sanity-checking arglists | |
1133 | |
1134 (defun byte-compile-fdefinition (name macro-p) | |
1135 (let* ((list (if (memq macro-p '(nil subr)) | |
1136 byte-compile-function-environment | |
1137 byte-compile-macro-environment)) | |
1138 (env (cdr (assq name list)))) | |
1139 (or env | |
1140 (let ((fn name)) | |
1141 (while (and (symbolp fn) | |
1142 (fboundp fn) | |
1143 (or (symbolp (symbol-function fn)) | |
1144 (consp (symbol-function fn)) | |
1145 (and (not macro-p) | |
1146 (compiled-function-p (symbol-function fn))) | |
1147 (and (eq macro-p 'subr) (subrp fn)))) | |
1148 (setq fn (symbol-function fn))) | |
1149 (if (or (and (not macro-p) (compiled-function-p fn)) | |
1150 (and (eq macro-p 'subr) (subrp fn))) | |
1151 fn | |
1152 (and (consp fn) | |
1153 (not (eq macro-p 'subr)) | |
1154 (if (eq 'macro (car fn)) | |
1155 (cdr fn) | |
1156 (if macro-p | |
1157 nil | |
1158 (if (eq 'autoload (car fn)) | |
1159 nil | |
1160 fn))))))))) | |
1161 | |
1162 (defun byte-compile-arglist-signature (arglist) | |
1163 (let ((args 0) | |
1164 opts | |
1165 restp) | |
1166 (while arglist | |
1167 (cond ((eq (car arglist) '&optional) | |
1168 (or opts (setq opts 0))) | |
1169 ((eq (car arglist) '&rest) | |
1170 (if (cdr arglist) | |
1171 (setq restp t | |
1172 arglist nil))) | |
1173 (t | |
1174 (if opts | |
1175 (setq opts (1+ opts)) | |
1176 (setq args (1+ args))))) | |
1177 (setq arglist (cdr arglist))) | |
1178 (cons args (if restp nil (if opts (+ args opts) args))))) | |
1179 | |
1180 | |
1181 (defun byte-compile-arglist-signatures-congruent-p (old new) | |
1182 (not (or | |
1183 (> (car new) (car old)) ; requires more args now | |
1184 (and (null (cdr old)) ; tooks rest-args, doesn't any more | |
1185 (cdr new)) | |
1186 (and (cdr new) (cdr old) ; can't take as many args now | |
1187 (< (cdr new) (cdr old))) | |
1188 ))) | |
1189 | |
1190 (defun byte-compile-arglist-signature-string (signature) | |
1191 (cond ((null (cdr signature)) | |
1192 (format "%d+" (car signature))) | |
1193 ((= (car signature) (cdr signature)) | |
1194 (format "%d" (car signature))) | |
1195 (t (format "%d-%d" (car signature) (cdr signature))))) | |
1196 | |
1197 | |
1198 ;; Warn if the form is calling a function with the wrong number of arguments. | |
1199 (defun byte-compile-callargs-warn (form) | |
1200 (let* ((def (or (byte-compile-fdefinition (car form) nil) | |
1201 (byte-compile-fdefinition (car form) t))) | |
1202 (sig (and def (byte-compile-arglist-signature | |
1203 (if (eq 'lambda (car-safe def)) | |
1204 (nth 1 def) | |
1205 (if (compiled-function-p def) | |
1206 (compiled-function-arglist def) | |
1207 '(&rest def)))))) | |
1208 (ncall (length (cdr form)))) | |
1209 (if (and (null def) | |
1210 (fboundp 'subr-min-args) | |
1211 (setq def (byte-compile-fdefinition (car form) 'subr))) | |
1212 (setq sig (cons (subr-min-args def) (subr-max-args def)))) | |
1213 (if sig | |
1214 (if (or (< ncall (car sig)) | |
1215 (and (cdr sig) (> ncall (cdr sig)))) | |
1216 (byte-compile-warn | |
1217 "%s called with %d argument%s, but %s %s" | |
1218 (car form) ncall | |
1219 (if (= 1 ncall) "" "s") | |
1220 (if (< ncall (car sig)) | |
1221 "requires" | |
1222 "accepts only") | |
1223 (byte-compile-arglist-signature-string sig))) | |
1224 (or (fboundp (car form)) ; might be a subr or autoload. | |
1225 ;; ## this doesn't work with recursion. | |
1226 (eq (car form) byte-compile-current-form) | |
1227 ;; It's a currently-undefined function. | |
1228 ;; Remember number of args in call. | |
1229 (let ((cons (assq (car form) byte-compile-unresolved-functions)) | |
1230 (n (length (cdr form)))) | |
1231 (if cons | |
1232 (or (memq n (cdr cons)) | |
1233 (setcdr cons (cons n (cdr cons)))) | |
1234 (setq byte-compile-unresolved-functions | |
1235 (cons (list (car form) n) | |
1236 byte-compile-unresolved-functions)))))))) | |
1237 | |
1238 ;; Warn if the function or macro is being redefined with a different | |
1239 ;; number of arguments. | |
1240 (defun byte-compile-arglist-warn (form macrop) | |
1241 (let ((old (byte-compile-fdefinition (nth 1 form) macrop))) | |
1242 (if old | |
1243 (let ((sig1 (byte-compile-arglist-signature | |
1244 (if (eq 'lambda (car-safe old)) | |
1245 (nth 1 old) | |
1246 (if (compiled-function-p old) | |
1247 (compiled-function-arglist old) | |
1248 '(&rest def))))) | |
1249 (sig2 (byte-compile-arglist-signature (nth 2 form)))) | |
1250 (or (byte-compile-arglist-signatures-congruent-p sig1 sig2) | |
1251 (byte-compile-warn "%s %s used to take %s %s, now takes %s" | |
1252 (if (eq (car form) 'defun) "function" "macro") | |
1253 (nth 1 form) | |
1254 (byte-compile-arglist-signature-string sig1) | |
1255 (if (equal sig1 '(1 . 1)) "argument" "arguments") | |
1256 (byte-compile-arglist-signature-string sig2)))) | |
1257 ;; This is the first definition. See if previous calls are compatible. | |
1258 (let ((calls (assq (nth 1 form) byte-compile-unresolved-functions)) | |
1259 nums sig min max) | |
1260 (if calls | |
1261 (progn | |
1262 (setq sig (byte-compile-arglist-signature (nth 2 form)) | |
1263 nums (sort (copy-sequence (cdr calls)) (function <)) | |
1264 min (car nums) | |
1265 max (car (nreverse nums))) | |
1266 (if (or (< min (car sig)) | |
1267 (and (cdr sig) (> max (cdr sig)))) | |
1268 (byte-compile-warn | |
1269 "%s being defined to take %s%s, but was previously called with %s" | |
1270 (nth 1 form) | |
1271 (byte-compile-arglist-signature-string sig) | |
1272 (if (equal sig '(1 . 1)) " arg" " args") | |
1273 (byte-compile-arglist-signature-string (cons min max)))) | |
1274 | |
1275 (setq byte-compile-unresolved-functions | |
1276 (delq calls byte-compile-unresolved-functions))))) | |
1277 ))) | |
1278 | |
1279 ;; If we have compiled any calls to functions which are not known to be | |
1280 ;; defined, issue a warning enumerating them. | |
1281 ;; `unresolved' in the list `byte-compile-warnings' disables this. | |
1282 (defun byte-compile-warn-about-unresolved-functions (&optional msg) | |
1283 (if (memq 'unresolved byte-compile-warnings) | |
1284 (let ((byte-compile-current-form (or msg "the end of the data"))) | |
1285 ;; First delete the autoloads from the list. | |
1286 (if byte-compile-autoload-environment | |
1287 (let ((rest byte-compile-unresolved-functions)) | |
1288 (while rest | |
1289 (if (assq (car (car rest)) byte-compile-autoload-environment) | |
1290 (setq byte-compile-unresolved-functions | |
1291 (delq (car rest) byte-compile-unresolved-functions))) | |
1292 (setq rest (cdr rest))))) | |
1293 ;; Now warn. | |
1294 (if (cdr byte-compile-unresolved-functions) | |
1295 (let* ((str "The following functions are not known to be defined: ") | |
1296 (L (+ (length str) 5)) | |
1297 (rest (reverse byte-compile-unresolved-functions)) | |
1298 s) | |
1299 (while rest | |
1300 (setq s (symbol-name (car (car rest))) | |
1301 L (+ L (length s) 2) | |
1302 rest (cdr rest)) | |
1303 (if (<= L (1- fill-column)) | |
1304 (setq str (concat str " " s (and rest ","))) | |
1305 (setq str (concat str "\n " s (and rest ",")) | |
1306 L (+ (length s) 4)))) | |
1307 (byte-compile-warn "%s" str)) | |
1308 (if byte-compile-unresolved-functions | |
1309 (byte-compile-warn "the function %s is not known to be defined." | |
1310 (car (car byte-compile-unresolved-functions))))))) | |
1311 nil) | |
1312 | |
1313 (defun byte-compile-defvar-p (var) | |
1314 ;; Whether the byte compiler thinks that non-lexical references to this | |
1315 ;; variable are ok. | |
1316 (or (globally-boundp var) | |
1317 (let ((rest byte-compile-bound-variables)) | |
1318 (while (and rest var) | |
1319 (if (and (eq var (car-safe (car rest))) | |
1320 (not (= 0 (logand (cdr (car rest)) | |
1321 byte-compile-global-bit)))) | |
1322 (setq var nil)) | |
1323 (setq rest (cdr rest))) | |
1324 ;; if var is nil at this point, it's a defvar in this file. | |
444 | 1325 (not var)) |
1326 ;; Perhaps (eval-when-compile (defvar foo)) | |
1327 (and (boundp 'current-load-list) | |
1328 (memq var current-load-list)))) | |
428 | 1329 |
1330 | |
1331 ;;; If we have compiled bindings of variables which have no referents, warn. | |
1332 (defun byte-compile-warn-about-unused-variables () | |
1333 (let ((rest byte-compile-bound-variables) | |
1334 (unreferenced '()) | |
1335 cell) | |
1336 (while (and rest | |
1337 ;; only warn about variables whose lifetime is now ending, | |
1338 ;; that is, variables from the lexical scope that is now | |
1339 ;; terminating. (Think nested lets.) | |
1340 (not (eq (car rest) 'new-scope))) | |
1341 (setq cell (car rest)) | |
1342 (if (and (= 0 (logand byte-compile-referenced-bit (cdr cell))) | |
1343 ;; Don't warn about declared-but-unused arguments, | |
1344 ;; for two reasons: first, the arglist structure | |
1345 ;; might be imposed by external forces, and we don't | |
1346 ;; have (declare (ignore x)) yet; and second, inline | |
1347 ;; expansion produces forms like | |
1348 ;; ((lambda (arg) (byte-code "..." [arg])) x) | |
1349 ;; which we can't (ok, well, don't) recognize as | |
1350 ;; containing a reference to arg, so every inline | |
1351 ;; expansion would generate a warning. (If we had | |
1352 ;; `ignore' then inline expansion could emit an | |
1353 ;; ignore declaration.) | |
1354 (= 0 (logand byte-compile-arglist-bit (cdr cell))) | |
1355 ;; Don't warn about defvars because this is a | |
1356 ;; legitimate special binding. | |
1357 (not (byte-compile-defvar-p (car cell)))) | |
1358 (setq unreferenced (cons (car cell) unreferenced))) | |
1359 (setq rest (cdr rest))) | |
1360 (setq unreferenced (nreverse unreferenced)) | |
1361 (while unreferenced | |
1362 (byte-compile-warn | |
1363 (format "variable %s bound but not referenced" (car unreferenced))) | |
1364 (setq unreferenced (cdr unreferenced))))) | |
1365 | |
1366 | |
1367 (defmacro byte-compile-constant-symbol-p (symbol) | |
1368 `(or (keywordp ,symbol) (memq ,symbol '(nil t)))) | |
1369 | |
1370 (defmacro byte-compile-constp (form) | |
1371 ;; Returns non-nil if FORM is a constant. | |
1372 `(cond ((consp ,form) (eq (car ,form) 'quote)) | |
1373 ((symbolp ,form) (byte-compile-constant-symbol-p ,form)) | |
1374 (t))) | |
1375 | |
1376 (defmacro byte-compile-close-variables (&rest body) | |
1377 `(let | |
1378 (;; | |
1379 ;; Close over these variables to encapsulate the | |
1380 ;; compilation state | |
1381 ;; | |
1382 (byte-compile-macro-environment | |
1383 ;; Copy it because the compiler may patch into the | |
1384 ;; macroenvironment. | |
1385 (copy-alist byte-compile-initial-macro-environment)) | |
1386 (byte-compile-function-environment nil) | |
1387 (byte-compile-autoload-environment nil) | |
1388 (byte-compile-unresolved-functions nil) | |
1389 (byte-compile-bound-variables nil) | |
1390 (byte-compile-free-references nil) | |
1391 (byte-compile-free-assignments nil) | |
1392 ;; | |
1393 ;; Close over these variables so that `byte-compiler-options' | |
1394 ;; can change them on a per-file basis. | |
1395 ;; | |
1396 (byte-compile-verbose byte-compile-verbose) | |
1397 (byte-optimize byte-optimize) | |
1398 (byte-compile-emacs19-compatibility | |
1399 byte-compile-emacs19-compatibility) | |
4677
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4639
diff
changeset
|
1400 (byte-compile-checks-on-load |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4639
diff
changeset
|
1401 byte-compile-checks-on-load) |
428 | 1402 (byte-compile-dynamic byte-compile-dynamic) |
1403 (byte-compile-dynamic-docstrings | |
1404 byte-compile-dynamic-docstrings) | |
1405 (byte-compile-warnings (if (eq byte-compile-warnings t) | |
1406 byte-compile-default-warnings | |
1407 byte-compile-warnings)) | |
1408 (byte-compile-file-domain nil)) | |
1409 (prog1 | |
1410 (progn ,@body) | |
1411 (if (memq 'unused-vars byte-compile-warnings) | |
1412 ;; done compiling in this scope, warn now. | |
1413 (byte-compile-warn-about-unused-variables))))) | |
1414 | |
1415 | |
1416 (defmacro displaying-byte-compile-warnings (&rest body) | |
1417 `(let* ((byte-compile-log-buffer (get-buffer-create "*Compile-Log*")) | |
1418 (byte-compile-point-max-prev (point-max byte-compile-log-buffer))) | |
1419 ;; Log the file name or buffer name. | |
1420 (byte-compile-log-file) | |
1421 ;; Record how much is logged now. | |
1422 ;; We will display the log buffer if anything more is logged | |
1423 ;; before the end of BODY. | |
1424 (defvar byte-compile-warnings-beginning) | |
1425 (let ((byte-compile-warnings-beginning | |
1426 (if (boundp 'byte-compile-warnings-beginning) | |
1427 byte-compile-warnings-beginning | |
1428 (point-max byte-compile-log-buffer)))) | |
1429 | |
1430 (unwind-protect | |
442 | 1431 (call-with-condition-handler |
1432 #'(lambda (error-info) | |
1433 (byte-compile-report-error error-info)) | |
1434 #'(lambda () | |
1435 (progn ,@body))) | |
428 | 1436 ;; Always set point in log to start of interesting output. |
1437 (with-current-buffer byte-compile-log-buffer | |
1438 (let ((show-begin | |
1439 (progn (goto-char byte-compile-point-max-prev) | |
1440 (skip-chars-forward "\^L\n") | |
1441 (point)))) | |
1442 ;; If there were compilation warnings, display them. | |
1443 (if temp-buffer-show-function | |
1444 (let ((show-buffer (get-buffer-create "*Compile-Log-Show*"))) | |
1445 ;; Always clean show-buffer, even when not displaying it, | |
1446 ;; so that misleading previous messages aren't left around. | |
1447 (with-current-buffer show-buffer | |
1448 (setq buffer-read-only nil) | |
1449 (erase-buffer)) | |
1450 (copy-to-buffer show-buffer show-begin (point-max)) | |
1451 (when (< byte-compile-warnings-beginning (point-max)) | |
1452 (funcall temp-buffer-show-function show-buffer))) | |
1453 (when (< byte-compile-warnings-beginning (point-max)) | |
1454 (select-window | |
1455 (prog1 (selected-window) | |
1456 (select-window (display-buffer (current-buffer))) | |
1457 (goto-char show-begin) | |
1458 (recenter 1))))))))))) | |
1459 | |
1460 | |
1461 ;;;###autoload | |
1462 (defun byte-force-recompile (directory) | |
1463 "Recompile every `.el' file in DIRECTORY that already has a `.elc' file. | |
1464 Files in subdirectories of DIRECTORY are processed also." | |
1465 (interactive "DByte force recompile (directory): ") | |
442 | 1466 (byte-recompile-directory directory nil nil t)) |
428 | 1467 |
1468 ;;;###autoload | |
1469 (defun byte-recompile-directory (directory &optional arg norecursion force) | |
1470 "Recompile every `.el' file in DIRECTORY that needs recompilation. | |
1471 This is if a `.elc' file exists but is older than the `.el' file. | |
444 | 1472 Files in subdirectories of DIRECTORY are also processed unless |
1473 optional argument NORECURSION is non-nil. | |
428 | 1474 |
1475 If the `.elc' file does not exist, normally the `.el' file is *not* compiled. | |
1476 But a prefix argument (optional second arg) means ask user, | |
1477 for each such `.el' file, whether to compile it. Prefix argument 0 means | |
1478 don't ask and compile the file anyway. | |
1479 | |
1480 A nonzero prefix argument also means ask about each subdirectory. | |
1481 | |
444 | 1482 If the fourth optional argument FORCE is non-nil, |
428 | 1483 recompile every `.el' file that already has a `.elc' file." |
1484 (interactive "DByte recompile directory: \nP") | |
1485 (if arg | |
1486 (setq arg (prefix-numeric-value arg))) | |
1487 (if noninteractive | |
1488 nil | |
1489 (save-some-buffers) | |
1490 (redraw-modeline)) | |
1491 (let ((directories (list (expand-file-name directory))) | |
1492 (file-count 0) | |
1493 (dir-count 0) | |
1494 last-dir) | |
1495 (displaying-byte-compile-warnings | |
1496 (while directories | |
1497 (setq directory (file-name-as-directory (car directories))) | |
1498 (or noninteractive (message "Checking %s..." directory)) | |
1499 (let ((files (directory-files directory)) | |
1500 source dest) | |
1501 (while files | |
1502 (setq source (expand-file-name (car files) directory)) | |
1503 (if (and (not (member (car files) '("." ".." "RCS" "CVS" "SCCS"))) | |
1504 ;; Stay away from directory back-links, etc: | |
1505 (not (file-symlink-p source)) | |
1506 (file-directory-p source) | |
1507 byte-recompile-directory-recursively) | |
1508 ;; This file is a subdirectory. Handle them differently. | |
1509 (if (or (null arg) | |
1510 (eq arg 0) | |
1511 (y-or-n-p (concat "Check " source "? "))) | |
1512 (setq directories | |
1513 (nconc directories (list source)))) | |
1514 ;; It is an ordinary file. Decide whether to compile it. | |
1515 (if (and (string-match emacs-lisp-file-regexp source) | |
1516 (not (auto-save-file-name-p source)) | |
502 | 1517 ;; make sure not a mule file we can't handle. |
1518 (or (not byte-recompile-ignore-uncompilable-mule-files) | |
1519 (featurep 'mule) | |
1520 (not (find-coding-system-magic-cookie-in-file | |
1521 source))) | |
428 | 1522 (setq dest (byte-compile-dest-file source)) |
1523 (if (file-exists-p dest) | |
1524 ;; File was already compiled. | |
1525 (or force (file-newer-than-file-p source dest)) | |
1526 ;; No compiled file exists yet. | |
1527 (and arg | |
1528 (or (eq 0 arg) | |
1529 (y-or-n-p (concat "Compile " source "? ")))))) | |
1530 (progn ;(if (and noninteractive (not byte-compile-verbose)) | |
1531 ; (message "Compiling %s..." source)) | |
1532 ; we do this in byte-compile-file. | |
1533 (if byte-recompile-directory-ignore-errors-p | |
1534 (batch-byte-compile-1 source) | |
1535 (byte-compile-file source)) | |
1536 (or noninteractive | |
1537 (message "Checking %s..." directory)) | |
1538 (setq file-count (1+ file-count)) | |
1539 (if (not (eq last-dir directory)) | |
1540 (setq last-dir directory | |
1541 dir-count (1+ dir-count))) | |
1542 ))) | |
1543 (setq files (cdr files)))) | |
1544 (setq directories (cdr directories)))) | |
1545 (message "Done (Total of %d file%s compiled%s)" | |
1546 file-count (if (= file-count 1) "" "s") | |
1547 (if (> dir-count 1) (format " in %d directories" dir-count) "")))) | |
1548 | |
1549 ;;;###autoload | |
1550 (defun byte-recompile-file (filename &optional force) | |
1551 "Recompile a file of Lisp code named FILENAME if it needs recompilation. | |
1552 This is if the `.elc' file exists but is older than the `.el' file. | |
1553 | |
1554 If the `.elc' file does not exist, normally the `.el' file is *not* | |
1555 compiled. But a prefix argument (optional second arg) means ask user | |
1556 whether to compile it. Prefix argument 0 don't ask and recompile anyway." | |
1557 (interactive "fByte recompile file: \nP") | |
1558 (let ((dest)) | |
1559 (if (and (string-match emacs-lisp-file-regexp filename) | |
1560 (not (auto-save-file-name-p filename)) | |
1561 (setq dest (byte-compile-dest-file filename)) | |
1562 (if (file-exists-p dest) | |
1563 (file-newer-than-file-p filename dest) | |
1564 (and force | |
1565 (or (eq 0 force) | |
502 | 1566 (y-or-n-p (concat "Compile " filename "? "))))) |
1567 (or (not byte-recompile-ignore-uncompilable-mule-files) | |
1568 (featurep 'mule) | |
1569 (not (find-coding-system-magic-cookie-in-file filename)))) | |
428 | 1570 (byte-compile-file filename)))) |
1571 | |
1572 ;;;###autoload | |
1573 (defun byte-compile-file (filename &optional load) | |
1574 "Compile a file of Lisp code named FILENAME into a file of byte code. | |
1575 The output file's name is made by appending `c' to the end of FILENAME. | |
1576 With prefix arg (noninteractively: 2nd arg), load the file after compiling." | |
1577 ;; (interactive "fByte compile file: \nP") | |
1578 (interactive | |
1579 (let ((file buffer-file-name) | |
1580 (file-name nil) | |
1581 (file-dir nil)) | |
1582 (and file | |
1583 (eq (cdr (assq 'major-mode (buffer-local-variables))) | |
1584 'emacs-lisp-mode) | |
1585 (setq file-name (file-name-nondirectory file) | |
1586 file-dir (file-name-directory file))) | |
1587 (list (read-file-name (if current-prefix-arg | |
1588 "Byte compile and load file: " | |
1589 "Byte compile file: ") | |
1590 file-dir nil nil file-name) | |
1591 current-prefix-arg))) | |
1592 ;; Expand now so we get the current buffer's defaults | |
1593 (setq filename (expand-file-name filename)) | |
1594 | |
1595 ;; If we're compiling a file that's in a buffer and is modified, offer | |
1596 ;; to save it first. | |
1597 (or noninteractive | |
1598 (let ((b (get-file-buffer (expand-file-name filename)))) | |
1599 (if (and b (buffer-modified-p b) | |
1600 (y-or-n-p (format "save buffer %s first? " (buffer-name b)))) | |
1601 (save-excursion (set-buffer b) (save-buffer))))) | |
1602 | |
1603 (if (or noninteractive byte-compile-verbose) ; XEmacs change | |
1604 (message "Compiling %s..." filename)) | |
1605 (let (;;(byte-compile-current-file (file-name-nondirectory filename)) | |
1606 (byte-compile-current-file filename) | |
1607 target-file input-buffer output-buffer | |
1608 byte-compile-dest-file) | |
1609 (setq target-file (byte-compile-dest-file filename)) | |
1610 (setq byte-compile-dest-file target-file) | |
1611 (save-excursion | |
1612 (setq input-buffer (get-buffer-create " *Compiler Input*")) | |
1613 (set-buffer input-buffer) | |
1614 (erase-buffer) | |
1615 (insert-file-contents filename) | |
1616 ;; Run hooks including the uncompression hook. | |
1617 ;; If they change the file name, then change it for the output also. | |
1618 (let ((buffer-file-name filename) | |
1619 (default-major-mode 'emacs-lisp-mode) | |
1620 (enable-local-eval nil)) | |
1621 (normal-mode) | |
1622 (setq filename buffer-file-name))) | |
1623 (setq byte-compiler-error-flag nil) | |
1624 ;; It is important that input-buffer not be current at this call, | |
1625 ;; so that the value of point set in input-buffer | |
1626 ;; within byte-compile-from-buffer lingers in that buffer. | |
1627 (setq output-buffer (byte-compile-from-buffer input-buffer filename)) | |
1628 (if byte-compiler-error-flag | |
1629 nil | |
1630 (if byte-compile-verbose | |
1631 (message "Compiling %s...done" filename)) | |
1632 (kill-buffer input-buffer) | |
1633 (save-excursion | |
1634 (set-buffer output-buffer) | |
1635 (goto-char (point-max)) | |
1636 (insert "\n") ; aaah, unix. | |
1637 (setq target-file (byte-compile-dest-file filename)) | |
1638 (unless byte-compile-overwrite-file | |
1639 (ignore-file-errors (delete-file target-file))) | |
1640 (if (file-writable-p target-file) | |
4529
6f41fb7f3a65
Protect .elc encoding from latin-unity.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4392
diff
changeset
|
1641 ;; 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
|
1642 ;; 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
|
1643 (let ((write-region-pre-hook nil)) |
6f41fb7f3a65
Protect .elc encoding from latin-unity.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4392
diff
changeset
|
1644 (write-region 1 (point-max) target-file)) |
428 | 1645 ;; This is just to give a better error message than write-region |
1646 (signal 'file-error | |
1647 (list "Opening output file" | |
1648 (if (file-exists-p target-file) | |
1649 "cannot overwrite file" | |
1650 "directory not writable or nonexistent") | |
1651 target-file))) | |
1652 (or byte-compile-overwrite-file | |
1653 (condition-case () | |
1654 (set-file-modes target-file (file-modes filename)) | |
1655 (error nil))) | |
1656 (kill-buffer (current-buffer))) | |
1657 (if (and byte-compile-generate-call-tree | |
1658 (or (eq t byte-compile-generate-call-tree) | |
1659 (y-or-n-p (format "Report call tree for %s? " filename)))) | |
1660 (save-excursion | |
1661 (display-call-tree filename))) | |
1662 (if load | |
1663 (load target-file)) | |
1664 t))) | |
1665 | |
1666 ;; RMS comments the next two out. | |
1667 | |
1668 ;;;###autoload | |
1669 (defun byte-compile-and-load-file (&optional filename) | |
1670 "Compile a file of Lisp code named FILENAME into a file of byte code, | |
1671 and then load it. The output file's name is made by appending \"c\" to | |
1672 the end of FILENAME." | |
1673 (interactive) | |
1674 (if filename ; I don't get it, (interactive-p) doesn't always work | |
1675 (byte-compile-file filename t) | |
1676 (let ((current-prefix-arg '(4))) | |
1677 (call-interactively 'byte-compile-file)))) | |
1678 | |
1679 ;;;###autoload | |
1680 (defun byte-compile-buffer (&optional buffer) | |
1681 "Byte-compile and evaluate contents of BUFFER (default: the current buffer)." | |
1682 (interactive "bByte compile buffer: ") | |
1683 (setq buffer (if buffer (get-buffer buffer) (current-buffer))) | |
1684 (message "Compiling %s..." buffer) | |
1685 (let* ((filename (or (buffer-file-name buffer) | |
1686 (prin1-to-string buffer))) | |
1687 (byte-compile-current-file buffer)) | |
1688 (byte-compile-from-buffer buffer filename t)) | |
1689 (message "Compiling %s...done" buffer) | |
1690 t) | |
1691 | |
1692 ;;; compiling a single function | |
1693 ;;;###autoload | |
1694 (defun compile-defun (&optional arg) | |
1695 "Compile and evaluate the current top-level form. | |
1696 Print the result in the minibuffer. | |
1697 With argument, insert value in current buffer after the form." | |
1698 (interactive "P") | |
1699 (save-excursion | |
1700 (end-of-defun) | |
1701 (beginning-of-defun) | |
1702 (let* ((byte-compile-current-file (buffer-file-name)) | |
1703 (load-file-name (buffer-file-name)) | |
1704 (byte-compile-last-warned-form 'nothing) | |
1705 (value (eval (displaying-byte-compile-warnings | |
1706 (byte-compile-sexp (read (current-buffer)) | |
1707 "toplevel forms"))))) | |
1708 (cond (arg | |
1709 (message "Compiling from buffer... done.") | |
1710 (prin1 value (current-buffer)) | |
1711 (insert "\n")) | |
1712 ((message "%s" (prin1-to-string value))))))) | |
1713 | |
1714 (defun byte-compile-from-buffer (byte-compile-inbuffer filename &optional eval) | |
1715 ;; buffer --> output-buffer, or buffer --> eval form, return nil | |
1716 (let (byte-compile-outbuffer | |
1717 ;; Prevent truncation of flonums and lists as we read and print them | |
1718 (float-output-format nil) | |
1719 (case-fold-search nil) | |
1720 (print-length nil) | |
1721 (print-level nil) | |
1722 ;; Simulate entry to byte-compile-top-level | |
1723 (byte-compile-constants nil) | |
1724 (byte-compile-variables nil) | |
1725 (byte-compile-tag-number 0) | |
1726 (byte-compile-depth 0) | |
1727 (byte-compile-maxdepth 0) | |
1728 (byte-compile-output nil) | |
1729 ;; #### This is bound in b-c-close-variables. | |
1730 ;; (byte-compile-warnings (if (eq byte-compile-warnings t) | |
1731 ;; byte-compile-warning-types | |
1732 ;; byte-compile-warnings)) | |
4623
a9f83990e6bf
Fix a byte compiler bug with characters above ?\xFF.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4539
diff
changeset
|
1733 (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
|
1734 (byte-compile-using-dynamic nil)) |
428 | 1735 (byte-compile-close-variables |
1736 (save-excursion | |
1737 (setq byte-compile-outbuffer | |
1738 (set-buffer (get-buffer-create " *Compiler Output*"))) | |
1739 (erase-buffer) | |
1740 ;; (emacs-lisp-mode) | |
1741 (setq case-fold-search nil) | |
1742 (and filename | |
1743 (not eval) | |
4677
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4639
diff
changeset
|
1744 (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
|
1745 byte-compile-outbuffer)) |
4623
a9f83990e6bf
Fix a byte compiler bug with characters above ?\xFF.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4539
diff
changeset
|
1746 (setq byte-compile-using-dynamic |
a9f83990e6bf
Fix a byte compiler bug with characters above ?\xFF.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4539
diff
changeset
|
1747 (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
|
1748 byte-compile-inbuffer) |
a9f83990e6bf
Fix a byte compiler bug with characters above ?\xFF.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4539
diff
changeset
|
1749 (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
|
1750 byte-compile-inbuffer))) |
428 | 1751 ;; This is a kludge. Some operating systems (OS/2, DOS) need to |
1752 ;; write files containing binary information specially. | |
1753 ;; Under most circumstances, such files will be in binary | |
1754 ;; overwrite mode, so those OS's use that flag to guess how | |
1755 ;; they should write their data. Advise them that .elc files | |
1756 ;; need to be written carefully. | |
1757 (setq overwrite-mode 'overwrite-mode-binary)) | |
1758 (displaying-byte-compile-warnings | |
1759 (save-excursion | |
4623
a9f83990e6bf
Fix a byte compiler bug with characters above ?\xFF.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4539
diff
changeset
|
1760 ;; 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
|
1761 ;; 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
|
1762 (goto-char (point-max byte-compile-outbuffer) byte-compile-outbuffer) |
428 | 1763 (set-buffer byte-compile-inbuffer) |
1764 (goto-char 1) | |
1765 | |
1766 ;; Compile the forms from the input buffer. | |
1767 (while (progn | |
1768 (while (progn (skip-chars-forward " \t\n\^L") | |
1769 (looking-at ";")) | |
1770 (forward-line 1)) | |
1771 (not (eobp))) | |
1772 (byte-compile-file-form (read byte-compile-inbuffer))) | |
1773 | |
1774 ;; Compile pending forms at end of file. | |
1775 (byte-compile-flush-pending) | |
4677
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4639
diff
changeset
|
1776 (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
|
1777 byte-compile-outbuffer) |
428 | 1778 (byte-compile-warn-about-unresolved-functions) |
1779 ;; Should we always do this? When calling multiple files, it | |
1780 ;; would be useful to delay this warning until all have | |
1781 ;; been compiled. | |
1782 (setq byte-compile-unresolved-functions nil))) | |
1783 (save-excursion | |
1784 (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
|
1785 (goto-char (point-min)) |
a9f83990e6bf
Fix a byte compiler bug with characters above ?\xFF.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4539
diff
changeset
|
1786 (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
|
1787 (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
|
1788 (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
|
1789 (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
|
1790 (message |
a9f83990e6bf
Fix a byte compiler bug with characters above ?\xFF.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4539
diff
changeset
|
1791 "%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
|
1792 filename)) |
a9f83990e6bf
Fix a byte compiler bug with characters above ?\xFF.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4539
diff
changeset
|
1793 (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
|
1794 byte-compile-inbuffer) |
a9f83990e6bf
Fix a byte compiler bug with characters above ?\xFF.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4539
diff
changeset
|
1795 (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
|
1796 byte-compile-inbuffer) |
a9f83990e6bf
Fix a byte compiler bug with characters above ?\xFF.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4539
diff
changeset
|
1797 (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
|
1798 byte-compile-outbuffer |
a9f83990e6bf
Fix a byte compiler bug with characters above ?\xFF.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4539
diff
changeset
|
1799 (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
|
1800 filename eval))))) |
428 | 1801 (if (not eval) |
1802 byte-compile-outbuffer | |
1803 (let (form) | |
1804 (while (condition-case nil | |
1805 (progn (setq form (read byte-compile-outbuffer)) | |
1806 t) | |
1807 (end-of-file nil)) | |
1808 (eval form))) | |
1809 (kill-buffer byte-compile-outbuffer) | |
1810 nil))) | |
1811 | |
4677
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4639
diff
changeset
|
1812 (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
|
1813 "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
|
1814 docstrings code.") |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4639
diff
changeset
|
1815 |
428 | 1816 (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
|
1817 byte-compile-outbuffer) |
428 | 1818 (set-buffer byte-compile-inbuffer) |
4677
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4639
diff
changeset
|
1819 (let (checks-string comments) |
428 | 1820 (set-buffer byte-compile-outbuffer) |
4677
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4639
diff
changeset
|
1821 (delete-region 1 (1+ byte-compile-checks-and-comments-space)) |
428 | 1822 (goto-char 1) |
1823 ;; | |
1824 ;; The magic number of .elc files is ";ELC", or 0x3B454C43. After that is | |
1825 ;; the file-format version number (19 or 20) as a byte, followed by some | |
1826 ;; nulls. The primary motivation for doing this is to get some binary | |
1827 ;; characters up in the first line of the file so that `diff' will simply | |
1828 ;; say "Binary files differ" instead of actually doing a diff of two .elc | |
1829 ;; files. An extra benefit is that you can add this to /etc/magic: | |
1830 ;; | |
613 | 1831 ;; 0 string ;ELC XEmacs Lisp compiled file, |
428 | 1832 ;; >4 byte x version %d |
1833 ;; | |
1834 (insert | |
1835 ";ELC" | |
1836 (if (byte-compile-version-cond byte-compile-emacs19-compatibility) 19 20) | |
4677
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4639
diff
changeset
|
1837 "\000\000\000\n") |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4639
diff
changeset
|
1838 (when (not (eq (find-coding-system 'raw-text-unix) |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4639
diff
changeset
|
1839 (find-coding-system buffer-file-coding-system))) |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4639
diff
changeset
|
1840 (insert (format ";;;###coding system: %s\n" |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4639
diff
changeset
|
1841 (coding-system-name buffer-file-coding-system)))) |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4639
diff
changeset
|
1842 (insert (format |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4639
diff
changeset
|
1843 "\n(or %s\n (error \"Loading this file requires: %s\"))\n" |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4639
diff
changeset
|
1844 (setq checks-string |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4639
diff
changeset
|
1845 (let ((print-readably t)) |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4639
diff
changeset
|
1846 (prin1-to-string (if (> (length |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4639
diff
changeset
|
1847 byte-compile-checks-on-load) |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4639
diff
changeset
|
1848 1) |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4639
diff
changeset
|
1849 (cons 'and |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4639
diff
changeset
|
1850 (reverse |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4639
diff
changeset
|
1851 byte-compile-checks-on-load)) |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4639
diff
changeset
|
1852 (car byte-compile-checks-on-load))))) |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4639
diff
changeset
|
1853 checks-string)) |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4639
diff
changeset
|
1854 (setq comments |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4639
diff
changeset
|
1855 (with-string-as-buffer-contents "" |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4639
diff
changeset
|
1856 (insert "\n;;; compiled by " |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4639
diff
changeset
|
1857 (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
|
1858 (concat (user-login-name) "@" (system-name))) |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4639
diff
changeset
|
1859 " on " |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4639
diff
changeset
|
1860 (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
|
1861 (insert ";;; emacs version " emacs-version ".\n") |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4639
diff
changeset
|
1862 (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
|
1863 (cond |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4639
diff
changeset
|
1864 ((eq byte-optimize 'source) |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4639
diff
changeset
|
1865 "source-level optimization only") |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4639
diff
changeset
|
1866 ((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
|
1867 (byte-optimize "optimization is on") |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4639
diff
changeset
|
1868 (t "optimization is off")) |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4639
diff
changeset
|
1869 "\n"))) |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4639
diff
changeset
|
1870 |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4639
diff
changeset
|
1871 ;; 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
|
1872 ;; 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
|
1873 (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
|
1874 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
|
1875 |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4639
diff
changeset
|
1876 (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
|
1877 (+ (point) (length comments)))) |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4639
diff
changeset
|
1878 (insert comments)) |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4639
diff
changeset
|
1879 (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
|
1880 (point))))) |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4639
diff
changeset
|
1881 |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4639
diff
changeset
|
1882 (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
|
1883 byte-compile-outbuffer) |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4639
diff
changeset
|
1884 ;; 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
|
1885 (goto-char 1) |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4639
diff
changeset
|
1886 (insert-char ?\ byte-compile-checks-and-comments-space) |
771 | 1887 (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
|
1888 (and |
a9f83990e6bf
Fix a byte compiler bug with characters above ?\xFF.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4539
diff
changeset
|
1889 (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
|
1890 (save-excursion |
a9f83990e6bf
Fix a byte compiler bug with characters above ?\xFF.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4539
diff
changeset
|
1891 (set-buffer byte-compile-inbuffer) |
a9f83990e6bf
Fix a byte compiler bug with characters above ?\xFF.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4539
diff
changeset
|
1892 (goto-char (point-min)) |
a9f83990e6bf
Fix a byte compiler bug with characters above ?\xFF.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4539
diff
changeset
|
1893 ;; 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
|
1894 ;; 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
|
1895 ;; 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
|
1896 ;; not true of ordinary comments. |
a9f83990e6bf
Fix a byte compiler bug with characters above ?\xFF.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4539
diff
changeset
|
1897 (let ((non-latin-1-re |
a9f83990e6bf
Fix a byte compiler bug with characters above ?\xFF.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4539
diff
changeset
|
1898 (concat "[^\000-\377]" |
4677
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4639
diff
changeset
|
1899 #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
|
1900 "\\{8,8\\}")) |
4623
a9f83990e6bf
Fix a byte compiler bug with characters above ?\xFF.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4539
diff
changeset
|
1901 (case-fold-search nil)) |
a9f83990e6bf
Fix a byte compiler bug with characters above ?\xFF.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4539
diff
changeset
|
1902 (catch 'need-to-escape-quote |
a9f83990e6bf
Fix a byte compiler bug with characters above ?\xFF.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4539
diff
changeset
|
1903 (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
|
1904 (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
|
1905 (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
|
1906 (forward-line 1)) |
a9f83990e6bf
Fix a byte compiler bug with characters above ?\xFF.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4539
diff
changeset
|
1907 t))))) |
771 | 1908 (setq buffer-file-coding-system 'raw-text-unix) |
1909 (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
|
1910 (pushnew '(featurep 'mule) byte-compile-checks-on-load) |
771 | 1911 (save-excursion |
1912 (set-buffer byte-compile-inbuffer) | |
1913 (setq byte-compile-dynamic nil | |
4677
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4639
diff
changeset
|
1914 byte-compile-dynamic-docstrings nil)))) |
428 | 1915 |
1916 (defun byte-compile-output-file-form (form) | |
1917 ;; writes the given form to the output buffer, being careful of docstrings | |
1918 ;; in defun, defmacro, defvar, defconst and autoload because make-docfile is | |
1919 ;; so amazingly stupid. | |
1920 ;; defalias calls are output directly by byte-compile-file-form-defmumble; | |
1921 ;; it does not pay to first build the defalias in defmumble and then parse | |
1922 ;; 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
|
1923 (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
|
1924 custom-declare-variable)) |
428 | 1925 (stringp (nth 3 form))) |
1926 (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
|
1927 (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
|
1928 '(autoload custom-declare-variable))) |
428 | 1929 (let ((print-escape-newlines t) |
1930 (print-length nil) | |
1931 (print-level nil) | |
1932 (print-readably t) ; print #[] for bytecode, 'x for (quote x) | |
1933 (print-gensym (if (and byte-compile-print-gensym | |
1934 (not byte-compile-emacs19-compatibility)) | |
4392
e8f448f997ac
bytecomp.el: bind print-gensym-alist to nil even with non-defvar, defun, [...] forms.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4304
diff
changeset
|
1935 '(t) nil)) |
e8f448f997ac
bytecomp.el: bind print-gensym-alist to nil even with non-defvar, defun, [...] forms.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4304
diff
changeset
|
1936 print-gensym-alist) |
428 | 1937 (princ "\n" byte-compile-outbuffer) |
1938 (prin1 form byte-compile-outbuffer) | |
1939 nil))) | |
1940 | |
1941 (defun byte-compile-output-docform (preface name info form specindex quoted) | |
1942 "Print a form with a doc string. INFO is (prefix doc-index postfix). | |
1943 If PREFACE and NAME are non-nil, print them too, | |
1944 before INFO and the FORM but after the doc string itself. | |
1945 If SPECINDEX is non-nil, it is the index in FORM | |
1946 of the function bytecode string. In that case, | |
1947 we output that argument and the following argument (the constants vector) | |
1948 together, for lazy loading. | |
1949 QUOTED says that we have to put a quote before the | |
1950 list that represents a doc string reference. | |
1951 `autoload' needs that." | |
1952 ;; We need to examine byte-compile-dynamic-docstrings | |
1953 ;; in the input buffer (now current), not in the output buffer. | |
1954 (let ((dynamic-docstrings byte-compile-dynamic-docstrings)) | |
1955 (set-buffer | |
1956 (prog1 (current-buffer) | |
1957 (set-buffer byte-compile-outbuffer) | |
1958 (let (position) | |
1959 | |
1960 ;; Insert the doc string, and make it a comment with #@LENGTH. | |
1961 (and (>= (nth 1 info) 0) | |
1962 dynamic-docstrings | |
1963 (progn | |
1964 ;; Make the doc string start at beginning of line | |
1965 ;; for make-docfile's sake. | |
1966 (insert "\n") | |
1967 (setq position | |
1968 (byte-compile-output-as-comment | |
1969 (nth (nth 1 info) form) nil)) | |
1970 ;; If the doc string starts with * (a user variable), | |
1971 ;; negate POSITION. | |
1972 (if (and (stringp (nth (nth 1 info) form)) | |
1973 (> (length (nth (nth 1 info) form)) 0) | |
1974 (char= (aref (nth (nth 1 info) form) 0) ?*)) | |
1975 (setq position (- position))))) | |
1976 | |
1977 (if preface | |
1978 (progn | |
1979 (insert preface) | |
1980 (prin1 name byte-compile-outbuffer))) | |
1981 (insert (car info)) | |
1982 (let ((print-escape-newlines t) | |
1983 (print-readably t) ; print #[] for bytecode, 'x for (quote x) | |
1984 ;; Use a cons cell to say that we want | |
1985 ;; print-gensym-alist not to be cleared between calls | |
1986 ;; to print functions. | |
1987 (print-gensym (if (and byte-compile-print-gensym | |
1988 (not byte-compile-emacs19-compatibility)) | |
1989 '(t) nil)) | |
1990 print-gensym-alist | |
1991 (index 0)) | |
1992 (prin1 (car form) byte-compile-outbuffer) | |
1993 (while (setq form (cdr form)) | |
1994 (setq index (1+ index)) | |
1995 (insert " ") | |
1996 (cond ((and (numberp specindex) (= index specindex)) | |
1997 (let ((position | |
1998 (byte-compile-output-as-comment | |
1999 (cons (car form) (nth 1 form)) | |
2000 t))) | |
2001 (princ (format "(#$ . %d) nil" position) | |
2002 byte-compile-outbuffer) | |
2003 (setq form (cdr form)) | |
2004 (setq index (1+ index)))) | |
2005 ((= index (nth 1 info)) | |
2006 (if position | |
2007 (princ (format (if quoted "'(#$ . %d)" "(#$ . %d)") | |
2008 position) | |
2009 byte-compile-outbuffer) | |
2010 (let ((print-escape-newlines nil)) | |
2011 (goto-char (prog1 (1+ (point)) | |
2012 (prin1 (car form) | |
2013 byte-compile-outbuffer))) | |
2014 (insert "\\\n") | |
2015 (goto-char (point-max))))) | |
2016 (t | |
2017 (prin1 (car form) byte-compile-outbuffer))))) | |
2018 (insert (nth 2 info)))))) | |
2019 nil) | |
2020 | |
2021 (defvar for-effect) ; ## Kludge! This should be an arg, not a special. | |
2022 | |
2023 (defun byte-compile-keep-pending (form &optional handler) | |
2024 (if (memq byte-optimize '(t source)) | |
2025 (setq form (byte-optimize-form form t))) | |
2026 (if handler | |
2027 (let ((for-effect t)) | |
2028 ;; To avoid consing up monstrously large forms at load time, we split | |
2029 ;; the output regularly. | |
2030 (and (memq (car-safe form) '(fset defalias define-function)) | |
2031 (nthcdr 300 byte-compile-output) | |
2032 (byte-compile-flush-pending)) | |
2033 (funcall handler form) | |
2034 (when for-effect | |
2035 (byte-compile-discard))) | |
2036 (byte-compile-form form t)) | |
2037 nil) | |
2038 | |
2039 (defun byte-compile-flush-pending () | |
2040 (if byte-compile-output | |
2041 (let ((form (byte-compile-out-toplevel t 'file))) | |
2042 (cond ((eq (car-safe form) 'progn) | |
2043 (mapcar 'byte-compile-output-file-form (cdr form))) | |
2044 (form | |
2045 (byte-compile-output-file-form form))) | |
2046 (setq byte-compile-constants nil | |
2047 byte-compile-variables nil | |
2048 byte-compile-depth 0 | |
2049 byte-compile-maxdepth 0 | |
2050 byte-compile-output nil)))) | |
2051 | |
2052 (defun byte-compile-file-form (form) | |
2053 (let ((byte-compile-current-form nil) ; close over this for warnings. | |
2054 handler) | |
2055 (cond | |
2056 ((not (consp form)) | |
2057 (byte-compile-keep-pending form)) | |
2058 ((and (symbolp (car form)) | |
2059 (setq handler (get (car form) 'byte-hunk-handler))) | |
2060 (cond ((setq form (funcall handler form)) | |
2061 (byte-compile-flush-pending) | |
2062 (byte-compile-output-file-form form)))) | |
2063 ((eq form (setq form (macroexpand form byte-compile-macro-environment))) | |
2064 (byte-compile-keep-pending form)) | |
2065 (t | |
2066 (byte-compile-file-form form))))) | |
2067 | |
2068 ;; Functions and variables with doc strings must be output separately, | |
2069 ;; so make-docfile can recognize them. Most other things can be output | |
2070 ;; as byte-code. | |
2071 | |
2072 (put 'defsubst 'byte-hunk-handler 'byte-compile-file-form-defsubst) | |
2073 (defun byte-compile-file-form-defsubst (form) | |
2074 (cond ((assq (nth 1 form) byte-compile-unresolved-functions) | |
2075 (setq byte-compile-current-form (nth 1 form)) | |
2076 (byte-compile-warn "defsubst %s was used before it was defined" | |
2077 (nth 1 form)))) | |
2078 (byte-compile-file-form | |
2079 (macroexpand form byte-compile-macro-environment)) | |
2080 ;; Return nil so the form is not output twice. | |
2081 nil) | |
2082 | |
2083 (put 'autoload 'byte-hunk-handler 'byte-compile-file-form-autoload) | |
2084 (defun byte-compile-file-form-autoload (form) | |
2085 ;; | |
2086 ;; If this is an autoload of a macro, and all arguments are constants (that | |
2087 ;; is, there is no hairy computation going on here) then evaluate the form | |
2088 ;; at compile-time. This is so that we can make use of macros which we | |
2089 ;; have autoloaded from the file being compiled. Normal function autoloads | |
2090 ;; are not automatically evaluated at compile time, because there's not | |
2091 ;; much point to it (so why bother cluttering up the compile-time namespace.) | |
2092 ;; | |
2093 ;; If this is an autoload of a function, then record its definition in the | |
2094 ;; byte-compile-autoload-environment to suppress any `not known to be | |
2095 ;; defined' warnings at the end of this file (this only matters for | |
2096 ;; functions which are autoloaded and compiled in the same file, if the | |
2097 ;; autoload already exists in the compilation environment, we wouldn't have | |
2098 ;; warned anyway.) | |
2099 ;; | |
2100 (let* ((name (if (byte-compile-constp (nth 1 form)) | |
2101 (eval (nth 1 form)))) | |
2102 ;; In v19, the 5th arg to autoload can be t, nil, 'macro, or 'keymap. | |
2103 (macrop (and (byte-compile-constp (nth 5 form)) | |
2104 (memq (eval (nth 5 form)) '(t macro)))) | |
2105 ;; (functionp (and (byte-compile-constp (nth 5 form)) | |
2106 ;; (eq 'nil (eval (nth 5 form))))) | |
2107 ) | |
2108 (if (and macrop | |
2109 (let ((form form)) | |
2110 ;; all forms are constant | |
2111 (while (if (setq form (cdr form)) | |
2112 (byte-compile-constp (car form)))) | |
2113 (null form))) | |
440 | 2114 ;; eval the macro autoload into the compilation environment |
428 | 2115 (eval form)) |
2116 | |
2117 (if name | |
2118 (let ((old (assq name byte-compile-autoload-environment))) | |
2119 (cond (old | |
2120 (if (memq 'redefine byte-compile-warnings) | |
2121 (byte-compile-warn "multiple autoloads for %s" name)) | |
2122 (setcdr old form)) | |
2123 (t | |
2124 ;; We only use the names in the autoload environment, but | |
2125 ;; it might be useful to have the bodies some day. | |
2126 (setq byte-compile-autoload-environment | |
2127 (cons (cons name form) | |
2128 byte-compile-autoload-environment))))))) | |
2129 ;; | |
2130 ;; Now output the form. | |
2131 (if (stringp (nth 3 form)) | |
2132 form | |
2133 ;; No doc string, so we can compile this as a normal form. | |
2134 (byte-compile-keep-pending form 'byte-compile-normal-call))) | |
2135 | |
442 | 2136 (put 'defvar 'byte-hunk-handler 'byte-compile-file-form-defvar-or-defconst) |
2137 (put 'defconst 'byte-hunk-handler 'byte-compile-file-form-defvar-or-defconst) | |
2138 (defun byte-compile-file-form-defvar-or-defconst (form) | |
2139 ;; (defvar|defconst VAR [VALUE [DOCSTRING]]) | |
428 | 2140 (if (> (length form) 4) |
442 | 2141 (byte-compile-warn |
2142 "%s %s called with %d arguments, but accepts only %s" | |
2143 (car form) (nth 1 form) (length (cdr form)) 3)) | |
428 | 2144 (if (and (> (length form) 3) (not (stringp (nth 3 form)))) |
2145 (byte-compile-warn "Third arg to %s %s is not a string: %s" | |
2146 (car form) (nth 1 form) (nth 3 form))) | |
2147 (if (null (nth 3 form)) | |
2148 ;; Since there is no doc string, we can compile this as a normal form, | |
2149 ;; and not do a file-boundary. | |
2150 (byte-compile-keep-pending form) | |
2151 (if (memq 'free-vars byte-compile-warnings) | |
2152 (setq byte-compile-bound-variables | |
2153 (cons (cons (nth 1 form) byte-compile-global-bit) | |
2154 byte-compile-bound-variables))) | |
2155 (cond ((consp (nth 2 form)) | |
2156 (setq form (copy-sequence form)) | |
2157 (setcar (cdr (cdr form)) | |
2158 (byte-compile-top-level (nth 2 form) nil 'file)))) | |
2159 | |
2160 ;; The following turns out not to be necessary, since we emit a call to | |
2161 ;; defvar, which can hack Vfile_domain by itself! | |
2162 ;; | |
2163 ;; If a file domain has been set, emit (put 'VAR 'variable-domain ...) | |
2164 ;; after this defvar. | |
2165 ; (if byte-compile-file-domain | |
2166 ; (progn | |
2167 ; ;; Actually, this will emit the (put ...) before the (defvar ...) | |
2168 ; ;; but I don't think that can matter in this case. | |
2169 ; (byte-compile-keep-pending | |
2170 ; (list 'put (list 'quote (nth 1 form)) ''variable-domain | |
2171 ; (list 'quote byte-compile-file-domain))))) | |
2172 form)) | |
2173 | |
2174 (put 'require 'byte-hunk-handler 'byte-compile-file-form-eval-boundary) | |
2175 (defun byte-compile-file-form-eval-boundary (form) | |
2176 (eval form) | |
2177 (byte-compile-keep-pending form 'byte-compile-normal-call)) | |
2178 | |
2179 (put 'progn 'byte-hunk-handler 'byte-compile-file-form-progn) | |
2180 (put 'prog1 'byte-hunk-handler 'byte-compile-file-form-progn) | |
2181 (put 'prog2 'byte-hunk-handler 'byte-compile-file-form-progn) | |
2182 (defun byte-compile-file-form-progn (form) | |
2183 (mapcar 'byte-compile-file-form (cdr form)) | |
2184 ;; Return nil so the forms are not output twice. | |
2185 nil) | |
2186 | |
2187 ;; This handler is not necessary, but it makes the output from dont-compile | |
2188 ;; and similar macros cleaner. | |
2189 (put 'eval 'byte-hunk-handler 'byte-compile-file-form-eval) | |
2190 (defun byte-compile-file-form-eval (form) | |
2191 (if (eq (car-safe (nth 1 form)) 'quote) | |
2192 (nth 1 (nth 1 form)) | |
2193 (byte-compile-keep-pending form))) | |
2194 | |
2195 (put 'defun 'byte-hunk-handler 'byte-compile-file-form-defun) | |
2196 (defun byte-compile-file-form-defun (form) | |
2197 (byte-compile-file-form-defmumble form nil)) | |
2198 | |
2199 (put 'defmacro 'byte-hunk-handler 'byte-compile-file-form-defmacro) | |
2200 (defun byte-compile-file-form-defmacro (form) | |
2201 (byte-compile-file-form-defmumble form t)) | |
2202 | |
2203 (defun byte-compile-compiled-obj-to-list (obj) | |
2204 ;; #### this is fairly disgusting. Rewrite the code instead | |
2205 ;; so that it doesn't create compiled objects in the first place! | |
2206 ;; Much better than creating them and then "uncreating" them | |
2207 ;; like this. | |
2208 (read (concat "(" | |
2209 (substring (let ((print-readably t) | |
2210 (print-gensym | |
2211 (if (and byte-compile-print-gensym | |
2212 (not byte-compile-emacs19-compatibility)) | |
2213 '(t) nil)) | |
2214 (print-gensym-alist nil)) | |
2215 (prin1-to-string obj)) | |
2216 2 -1) | |
2217 ")"))) | |
2218 | |
2219 (defun byte-compile-file-form-defmumble (form macrop) | |
2220 (let* ((name (car (cdr form))) | |
2221 (this-kind (if macrop 'byte-compile-macro-environment | |
2222 'byte-compile-function-environment)) | |
2223 (that-kind (if macrop 'byte-compile-function-environment | |
2224 'byte-compile-macro-environment)) | |
2225 (this-one (assq name (symbol-value this-kind))) | |
2226 (that-one (assq name (symbol-value that-kind))) | |
2227 (byte-compile-free-references nil) | |
2228 (byte-compile-free-assignments nil)) | |
2229 | |
2230 ;; When a function or macro is defined, add it to the call tree so that | |
2231 ;; we can tell when functions are not used. | |
2232 (if byte-compile-generate-call-tree | |
2233 (or (assq name byte-compile-call-tree) | |
2234 (setq byte-compile-call-tree | |
2235 (cons (list name nil nil) byte-compile-call-tree)))) | |
2236 | |
2237 (setq byte-compile-current-form name) ; for warnings | |
2238 (when (memq 'redefine byte-compile-warnings) | |
2239 (byte-compile-arglist-warn form macrop)) | |
2240 (defvar filename) ; #### filename used free | |
2241 (when byte-compile-verbose | |
2242 (message "Compiling %s... (%s)" | |
2243 (if filename (file-name-nondirectory filename) "") | |
2244 (nth 1 form))) | |
2245 (cond (that-one | |
2246 (when (and (memq 'redefine byte-compile-warnings) | |
2247 ;; hack hack: don't warn when compiling the stubs in | |
2248 ;; bytecomp-runtime... | |
2249 (not (assq (nth 1 form) | |
2250 byte-compile-initial-macro-environment))) | |
2251 (byte-compile-warn | |
2252 "%s defined multiple times, as both function and macro" | |
2253 (nth 1 form))) | |
2254 (setcdr that-one nil)) | |
2255 (this-one | |
2256 (when (and (memq 'redefine byte-compile-warnings) | |
2257 ;; hack: don't warn when compiling the magic internal | |
2258 ;; byte-compiler macros in bytecomp-runtime.el... | |
2259 (not (assq (nth 1 form) | |
2260 byte-compile-initial-macro-environment))) | |
2261 (byte-compile-warn "%s %s defined multiple times in this file" | |
2262 (if macrop "macro" "function") | |
2263 (nth 1 form)))) | |
2264 ((and (fboundp name) | |
2265 (or (subrp (symbol-function name)) | |
2266 (eq (car-safe (symbol-function name)) | |
2267 (if macrop 'lambda 'macro)))) | |
2268 (if (memq 'redefine byte-compile-warnings) | |
2269 (byte-compile-warn "%s %s being redefined as a %s" | |
2270 (if (subrp (symbol-function name)) | |
2271 "subr" | |
2272 (if macrop "function" "macro")) | |
2273 (nth 1 form) | |
2274 (if macrop "macro" "function"))) | |
2275 ;; shadow existing definition | |
2276 (set this-kind | |
2277 (cons (cons name nil) (symbol-value this-kind))))) | |
2278 (let ((body (nthcdr 3 form))) | |
2279 (if (and (stringp (car body)) | |
2280 (symbolp (car-safe (cdr-safe body))) | |
2281 (car-safe (cdr-safe body)) | |
2282 (stringp (car-safe (cdr-safe (cdr-safe body))))) | |
2283 (byte-compile-warn "Probable `\"' without `\\' in doc string of %s" | |
2284 (nth 1 form)))) | |
2285 (let* ((new-one (byte-compile-lambda (cons 'lambda (nthcdr 2 form)))) | |
2286 (code (byte-compile-byte-code-maker new-one))) | |
2287 (if this-one | |
2288 (setcdr this-one new-one) | |
2289 (set this-kind | |
2290 (cons (cons name new-one) (symbol-value this-kind)))) | |
2291 (if (and (stringp (nth 3 form)) | |
2292 (eq 'quote (car-safe code)) | |
2293 (eq 'lambda (car-safe (nth 1 code)))) | |
2294 (cons (car form) | |
2295 (cons name (cdr (nth 1 code)))) | |
2296 (byte-compile-flush-pending) | |
2297 (if (not (stringp (nth 3 form))) | |
2298 ;; No doc string. Provide -1 as the "doc string index" | |
2299 ;; so that no element will be treated as a doc string. | |
2300 (byte-compile-output-docform | |
2301 "\n(defalias '" | |
2302 name | |
2303 (cond ((atom code) | |
2304 (if macrop '(" '(macro . #[" -1 "])") '(" #[" -1 "]"))) | |
2305 ((eq (car code) 'quote) | |
2306 (setq code new-one) | |
2307 (if macrop '(" '(macro " -1 ")") '(" '(" -1 ")"))) | |
2308 ((if macrop '(" (cons 'macro (" -1 "))") '(" (" -1 ")")))) | |
2309 ;; FSF just calls `(append code nil)' here but that relies | |
2310 ;; on horrible C kludges in concat() that accept byte- | |
2311 ;; compiled objects and pretend they're vectors. | |
2312 (if (compiled-function-p code) | |
2313 (byte-compile-compiled-obj-to-list code) | |
2314 (append code nil)) | |
2315 (and (atom code) byte-compile-dynamic | |
2316 1) | |
2317 nil) | |
2318 ;; Output the form by hand, that's much simpler than having | |
2319 ;; b-c-output-file-form analyze the defalias. | |
2320 (byte-compile-output-docform | |
2321 "\n(defalias '" | |
2322 name | |
2323 (cond ((atom code) ; compiled-function-p | |
2324 (if macrop '(" '(macro . #[" 4 "])") '(" #[" 4 "]"))) | |
2325 ((eq (car code) 'quote) | |
2326 (setq code new-one) | |
2327 (if macrop '(" '(macro " 2 ")") '(" '(" 2 ")"))) | |
2328 ((if macrop '(" (cons 'macro (" 5 "))") '(" (" 5 ")")))) | |
2329 ;; The result of byte-compile-byte-code-maker is either a | |
2330 ;; compiled-function object, or a list of some kind. If it's | |
2331 ;; not a cons, we must coerce it into a list of the elements | |
2332 ;; to be printed to the file. | |
2333 (if (consp code) | |
2334 code | |
2335 (nconc (list | |
2336 (compiled-function-arglist code) | |
2337 (compiled-function-instructions code) | |
2338 (compiled-function-constants code) | |
2339 (compiled-function-stack-depth code)) | |
2340 (let ((doc (documentation code t))) | |
2341 (if doc (list doc))) | |
2342 (if (commandp code) | |
2343 (list (nth 1 (compiled-function-interactive code)))))) | |
2344 (and (atom code) byte-compile-dynamic | |
2345 1) | |
2346 nil)) | |
2347 (princ ")" byte-compile-outbuffer) | |
2348 nil)))) | |
2349 | |
2350 ;; Print Lisp object EXP in the output file, inside a comment, | |
2351 ;; and return the file position it will have. | |
2352 ;; If QUOTED is non-nil, print with quoting; otherwise, print without quoting. | |
2353 (defun byte-compile-output-as-comment (exp quoted) | |
2354 (let ((position (point))) | |
2355 (set-buffer | |
2356 (prog1 (current-buffer) | |
2357 (set-buffer byte-compile-outbuffer) | |
2358 | |
2359 ;; Insert EXP, and make it a comment with #@LENGTH. | |
2360 (insert " ") | |
2361 (if quoted | |
2362 (prin1 exp byte-compile-outbuffer) | |
2363 (princ exp byte-compile-outbuffer)) | |
2364 (goto-char position) | |
2365 ;; Quote certain special characters as needed. | |
2366 ;; get_doc_string in doc.c does the unquoting. | |
2367 (while (search-forward "\^A" nil t) | |
2368 (replace-match "\^A\^A" t t)) | |
2369 (goto-char position) | |
2370 (while (search-forward "\000" nil t) | |
2371 (replace-match "\^A0" t t)) | |
2372 (goto-char position) | |
2373 (while (search-forward "\037" nil t) | |
2374 (replace-match "\^A_" t t)) | |
2375 (goto-char (point-max)) | |
2376 (insert "\037") | |
2377 (goto-char position) | |
2378 (insert "#@" (format "%d" (- (point-max) position))) | |
2379 | |
2380 ;; Save the file position of the object. | |
2381 ;; Note we should add 1 to skip the space | |
2382 ;; that we inserted before the actual doc string, | |
2383 ;; and subtract 1 to convert from an 1-origin Emacs position | |
2384 ;; to a file position; they cancel. | |
2385 (setq position (point)) | |
2386 (goto-char (point-max)))) | |
2387 position)) | |
2388 | |
2389 | |
2390 | |
2391 ;; The `domain' declaration. This is legal only at top-level in a file, and | |
2392 ;; should generally be the first form in the file. It is not legal inside | |
2393 ;; function bodies. | |
2394 | |
2395 (put 'domain 'byte-hunk-handler 'byte-compile-file-form-domain) | |
2396 (defun byte-compile-file-form-domain (form) | |
2397 (if (not (null (cdr (cdr form)))) | |
2398 (byte-compile-warn "domain used with too many arguments: %s" form)) | |
2399 (let ((domain (nth 1 form))) | |
2400 (or (null domain) | |
2401 (stringp domain) | |
2402 (progn | |
2403 (byte-compile-warn | |
2404 "argument to `domain' declaration must be a literal string: %s" | |
2405 form) | |
2406 (setq domain nil))) | |
2407 (setq byte-compile-file-domain domain)) | |
2408 (byte-compile-keep-pending form 'byte-compile-normal-call)) | |
2409 | |
2410 (defun byte-compile-domain (form) | |
2411 (byte-compile-warn "The `domain' declaration is legal only at top-level: %s" | |
2412 (let ((print-escape-newlines t) | |
2413 (print-level 4) | |
2414 (print-length 4)) | |
2415 (prin1-to-string form))) | |
2416 (byte-compile-normal-call | |
2417 (list 'signal ''error | |
2418 (list 'quote (list "`domain' used inside a function" form))))) | |
2419 | |
2420 ;; This is part of bytecomp.el in 19.35: | |
2421 (put 'custom-declare-variable 'byte-hunk-handler | |
2422 'byte-compile-file-form-custom-declare-variable) | |
2423 (defun byte-compile-file-form-custom-declare-variable (form) | |
4289 | 2424 ;; XEmacs change; our implementation byte compiles and gives warnings |
2425 ;; about the default value code, which GNU's doesn't. | |
2426 (let* ((quoted-default (car-safe (cdr-safe (cdr-safe form)))) | |
2427 (to-examine (car-safe (cdr-safe quoted-default)))) | |
2428 (if (memq 'free-vars byte-compile-warnings) | |
2429 (setq byte-compile-bound-variables | |
2430 (cons (cons (nth 1 (nth 1 form)) | |
2431 byte-compile-global-bit) | |
2432 byte-compile-bound-variables))) | |
2433 ;; Byte compile anything that smells like a lambda. I initially | |
2434 ;; considered limiting it to the :initialize, :set and :get args, but | |
2435 ;; that's not amazingly forward-compatible, and anyone expecting other | |
2436 ;; things to be stored as data, not code, is unrealistic. | |
2437 (loop | |
2438 for entry in-ref (nthcdr 4 form) | |
2439 do (cond ((and (eq 'function (car-safe entry)) | |
2440 (consp (car-safe (cdr-safe entry)))) | |
2441 (setf entry (copy-sequence entry)) | |
2442 (setcar (cdr entry) (byte-compile-lambda (car (cdr entry))))) | |
2443 ((and (eq 'lambda (car-safe entry))) | |
2444 (setf entry (byte-compile-lambda entry))))) | |
2445 ;; Byte compile the default value, as we do for defvar. | |
2446 (when (consp (cdr-safe to-examine)) | |
2447 (setq form (copy-sequence form)) | |
2448 (setcdr (third form) | |
2449 (list (byte-compile-top-level to-examine nil 'file))) | |
2450 ;; And save a value to be examined in the custom UI, if that differs | |
2451 ;; from the init value. | |
2452 (unless (equal to-examine (car-safe (cdr (third form)))) | |
4304 | 2453 (setcdr (third form) |
2454 (list (byte-compile-top-level | |
2455 ;; This is ugly. custom-declare-variable errors if | |
2456 ;; it's passed a keyword it doesn't know about, and | |
2457 ;; so to make this code run on 21.4, we add code to | |
2458 ;; modify the standard-value property to the | |
2459 ;; byte-compiled value for DEFAULT. | |
2460 `(prog2 (put ,(second form) 'standard-value | |
2461 '(,to-examine)) | |
2462 ,to-examine) | |
2463 nil 'file))))) | |
4289 | 2464 form)) |
428 | 2465 |
2466 ;;;###autoload | |
2467 (defun byte-compile (form) | |
2468 "If FORM is a symbol, byte-compile its function definition. | |
2469 If FORM is a lambda or a macro, byte-compile it as a function." | |
2470 (displaying-byte-compile-warnings | |
2471 (byte-compile-close-variables | |
2472 (let* ((fun (if (symbolp form) | |
2473 (and (fboundp form) (symbol-function form)) | |
2474 form)) | |
2475 (macro (eq (car-safe fun) 'macro))) | |
2476 (if macro | |
2477 (setq fun (cdr fun))) | |
2478 (cond ((eq (car-safe fun) 'lambda) | |
2479 (setq fun (if macro | |
2480 (cons 'macro (byte-compile-lambda fun)) | |
2481 (byte-compile-lambda fun))) | |
2482 (if (symbolp form) | |
2483 (defalias form fun) | |
2484 fun))))))) | |
2485 | |
2486 ;;;###autoload | |
2487 (defun byte-compile-sexp (sexp &optional msg) | |
2488 "Compile and return SEXP." | |
2489 (displaying-byte-compile-warnings | |
2490 (byte-compile-close-variables | |
2491 (prog1 | |
2492 (byte-compile-top-level sexp) | |
2493 (byte-compile-warn-about-unresolved-functions msg))))) | |
2494 | |
2495 ;; Given a function made by byte-compile-lambda, make a form which produces it. | |
2496 (defun byte-compile-byte-code-maker (fun) | |
2497 (cond | |
2498 ;; ## atom is faster than compiled-func-p. | |
2499 ((atom fun) ; compiled-function-p | |
2500 fun) | |
2501 ;; b-c-lambda didn't produce a compiled-function, so it must be a trivial | |
2502 ;; function. | |
2503 ((let (tmp) | |
2504 (if (and (setq tmp (assq 'byte-code (cdr-safe (cdr fun)))) | |
2505 (null (cdr (memq tmp fun)))) | |
2506 ;; Generate a make-byte-code call. | |
2507 (let* ((interactive (assq 'interactive (cdr (cdr fun))))) | |
2508 (nconc (list 'make-byte-code | |
2509 (list 'quote (nth 1 fun)) ;arglist | |
2510 (nth 1 tmp) ;instructions | |
2511 (nth 2 tmp) ;constants | |
2512 (nth 3 tmp)) ;stack-depth | |
2513 (cond ((stringp (nth 2 fun)) | |
2514 (list (nth 2 fun))) ;docstring | |
2515 (interactive | |
2516 (list nil))) | |
2517 (cond (interactive | |
2518 (list (if (or (null (nth 1 interactive)) | |
2519 (stringp (nth 1 interactive))) | |
2520 (nth 1 interactive) | |
2521 ;; Interactive spec is a list or a variable | |
2522 ;; (if it is correct). | |
2523 (list 'quote (nth 1 interactive)))))))) | |
2524 ;; a non-compiled function (probably trivial) | |
2525 (list 'quote fun)))))) | |
2526 | |
2527 ;; Byte-compile a lambda-expression and return a valid function. | |
2528 ;; The value is usually a compiled function but may be the original | |
2529 ;; lambda-expression. | |
2530 (defun byte-compile-lambda (fun) | |
2531 (or (eq 'lambda (car-safe fun)) | |
2532 (error "not a lambda -- %s" (prin1-to-string fun))) | |
2533 (let* ((arglist (nth 1 fun)) | |
2534 (byte-compile-bound-variables | |
2535 (let ((new-bindings | |
2536 (mapcar #'(lambda (x) (cons x byte-compile-arglist-bit)) | |
2537 (and (memq 'free-vars byte-compile-warnings) | |
2538 (delq '&rest (delq '&optional | |
2539 (copy-sequence arglist))))))) | |
2540 (nconc new-bindings | |
2541 (cons 'new-scope byte-compile-bound-variables)))) | |
2542 (body (cdr (cdr fun))) | |
2543 (doc (if (stringp (car body)) | |
2544 (prog1 (car body) | |
1548 | 2545 ;; Discard the doc string |
2546 ;; only if it is not the only element of the body. | |
2547 (if (cdr body) | |
2548 (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
|
2549 (int (assq 'interactive body)) compiled-int) |
428 | 2550 (dolist (arg arglist) |
2551 (cond ((not (symbolp arg)) | |
2552 (byte-compile-warn "non-symbol in arglist: %S" arg)) | |
2553 ((byte-compile-constant-symbol-p arg) | |
2554 (byte-compile-warn "constant symbol in arglist: %s" arg)) | |
2555 ((and (char= ?\& (aref (symbol-name arg) 0)) | |
2556 (not (eq arg '&optional)) | |
2557 (not (eq arg '&rest))) | |
2558 (byte-compile-warn "unrecognized `&' keyword in arglist: %s" | |
2559 arg)))) | |
2560 (cond (int | |
2561 ;; Skip (interactive) if it is in front (the most usual location). | |
2562 (if (eq int (car body)) | |
2563 (setq body (cdr body))) | |
2564 (cond ((consp (cdr int)) | |
2565 (if (cdr (cdr int)) | |
2566 (byte-compile-warn "malformed interactive spec: %s" | |
2567 (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
|
2568 ;; 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
|
2569 ;; 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
|
2570 ;; 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
|
2571 ;; 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
|
2572 ;; useful for warnings. |
428 | 2573 (let ((form (nth 1 int))) |
2574 (while (or (eq (car-safe form) 'let) | |
2575 (eq (car-safe form) 'let*) | |
2576 (eq (car-safe form) 'save-excursion)) | |
2577 (while (consp (cdr form)) | |
2578 (setq form (cdr form))) | |
2579 (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
|
2580 (setq compiled-int |
7757334005ae
bytecomp.el: always check code in (interactive SEXP) for sanity
Aidan Kehoe <kehoea@parhasard.net>
parents:
4623
diff
changeset
|
2581 (byte-compile-top-level (nth 1 int))) |
428 | 2582 (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
|
2583 (setq int (list 'interactive compiled-int))))) |
428 | 2584 ((cdr int) |
2585 (byte-compile-warn "malformed interactive spec: %s" | |
2586 (prin1-to-string int)))))) | |
2587 (let ((compiled (byte-compile-top-level (cons 'progn body) nil 'lambda))) | |
2588 (if (memq 'unused-vars byte-compile-warnings) | |
2589 ;; done compiling in this scope, warn now. | |
2590 (byte-compile-warn-about-unused-variables)) | |
2591 (if (eq 'byte-code (car-safe compiled)) | |
2592 (apply 'make-byte-code | |
2593 (append (list arglist) | |
2594 ;; byte-string, constants-vector, stack depth | |
2595 (cdr compiled) | |
2596 ;; optionally, the doc string. | |
2597 (if (or doc int) | |
2598 (list doc)) | |
2599 ;; optionally, the interactive spec. | |
2600 (if int | |
2601 (list (nth 1 int))))) | |
2602 (setq compiled | |
2603 (nconc (if int (list int)) | |
2604 (cond ((eq (car-safe compiled) 'progn) (cdr compiled)) | |
2605 (compiled (list compiled))))) | |
2606 (nconc (list 'lambda arglist) | |
2607 (if (or doc (stringp (car compiled))) | |
2608 (cons doc (cond (compiled) | |
2609 (body (list nil)))) | |
2610 compiled)))))) | |
2611 | |
2612 (defun byte-compile-constants-vector () | |
2613 ;; Builds the constants-vector from the current variables and constants. | |
2614 ;; This modifies the constants from (const . nil) to (const . offset). | |
2615 ;; To keep the byte-codes to look up the vector as short as possible: | |
2616 ;; First 6 elements are vars, as there are one-byte varref codes for those. | |
2617 ;; Next up to byte-constant-limit are constants, still with one-byte codes. | |
2618 ;; Next variables again, to get 2-byte codes for variable lookup. | |
2619 ;; The rest of the constants and variables need 3-byte byte-codes. | |
2620 (let* ((i -1) | |
2621 (rest (nreverse byte-compile-variables)) ; nreverse because the first | |
2622 (other (nreverse byte-compile-constants)) ; vars often are used most. | |
2623 ret tmp | |
2624 (limits '(5 ; Use the 1-byte varref codes, | |
2625 63 ; 1-constlim ; 1-byte byte-constant codes, | |
2626 255 ; 2-byte varref codes, | |
2627 65535)) ; 3-byte codes for the rest. | |
2628 limit) | |
2629 (while (or rest other) | |
2630 (setq limit (car limits)) | |
2631 (while (and rest (not (eq i limit))) | |
2632 (if (setq tmp (assq (car (car rest)) ret)) | |
2633 (setcdr (car rest) (cdr tmp)) | |
2634 (setcdr (car rest) (setq i (1+ i))) | |
2635 (setq ret (cons (car rest) ret))) | |
2636 (setq rest (cdr rest))) | |
2637 (setq limits (cdr limits) | |
2638 rest (prog1 other | |
2639 (setq other rest)))) | |
2640 (apply 'vector (nreverse (mapcar 'car ret))))) | |
2641 | |
2642 ;; Given an expression FORM, compile it and return an equivalent byte-code | |
2643 ;; expression (a call to the function byte-code). | |
2644 (defun byte-compile-top-level (form &optional for-effect output-type) | |
2645 ;; OUTPUT-TYPE advises about how form is expected to be used: | |
2646 ;; 'eval or nil -> a single form, | |
2647 ;; 'progn or t -> a list of forms, | |
2648 ;; 'lambda -> body of a lambda, | |
2649 ;; 'file -> used at file-level. | |
2650 (let ((byte-compile-constants nil) | |
2651 (byte-compile-variables nil) | |
2652 (byte-compile-tag-number 0) | |
2653 (byte-compile-depth 0) | |
2654 (byte-compile-maxdepth 0) | |
2655 (byte-compile-output nil)) | |
2656 (if (memq byte-optimize '(t source)) | |
2657 (setq form (byte-optimize-form form for-effect))) | |
2658 (while (and (eq (car-safe form) 'progn) (null (cdr (cdr form)))) | |
2659 (setq form (nth 1 form))) | |
2660 (if (and (eq 'byte-code (car-safe form)) | |
2661 (not (memq byte-optimize '(t byte))) | |
2662 (stringp (nth 1 form)) | |
2663 (vectorp (nth 2 form)) | |
2664 (natnump (nth 3 form))) | |
2665 form | |
2666 (byte-compile-form form for-effect) | |
2667 (byte-compile-out-toplevel for-effect output-type)))) | |
2668 | |
2669 (defun byte-compile-out-toplevel (&optional for-effect output-type) | |
2670 (if for-effect | |
2671 ;; The stack is empty. Push a value to be returned from (byte-code ..). | |
2672 (if (eq (car (car byte-compile-output)) 'byte-discard) | |
2673 (setq byte-compile-output (cdr byte-compile-output)) | |
2674 (byte-compile-push-constant | |
2675 ;; Push any constant - preferably one which already is used, and | |
2676 ;; a number or symbol - ie not some big sequence. The return value | |
2677 ;; isn't returned, but it would be a shame if some textually large | |
2678 ;; constant was not optimized away because we chose to return it. | |
2679 (and (not (assq nil byte-compile-constants)) ; Nil is often there. | |
2680 (let ((tmp (reverse byte-compile-constants))) | |
2681 (while (and tmp (not (or (symbolp (car (car tmp))) | |
2682 (numberp (car (car tmp)))))) | |
2683 (setq tmp (cdr tmp))) | |
2684 (car (car tmp))))))) | |
2685 (byte-compile-out 'byte-return 0) | |
2686 (setq byte-compile-output (nreverse byte-compile-output)) | |
2687 (if (memq byte-optimize '(t byte)) | |
2688 (setq byte-compile-output | |
2689 (byte-optimize-lapcode byte-compile-output for-effect))) | |
2690 | |
2691 ;; Decompile trivial functions: | |
2692 ;; only constants and variables, or a single funcall except in lambdas. | |
2693 ;; Except for Lisp_Compiled objects, forms like (foo "hi") | |
2694 ;; are still quicker than (byte-code "..." [foo "hi"] 2). | |
2695 ;; Note that even (quote foo) must be parsed just as any subr by the | |
2696 ;; interpreter, so quote should be compiled into byte-code in some contexts. | |
2697 ;; What to leave uncompiled: | |
2698 ;; lambda -> never. we used to leave it uncompiled if the body was | |
2699 ;; a single atom, but that causes confusion if the docstring | |
2700 ;; uses the (file . pos) syntax. Besides, now that we have | |
2701 ;; the Lisp_Compiled type, the compiled form is faster. | |
2702 ;; eval -> atom, quote or (function atom atom atom) | |
2703 ;; progn -> as <<same-as-eval>> or (progn <<same-as-eval>> atom) | |
2704 ;; file -> as progn, but takes both quotes and atoms, and longer forms. | |
2705 (let (rest | |
2706 (maycall (not (eq output-type 'lambda))) ; t if we may make a funcall. | |
2707 tmp body) | |
2708 (cond | |
2709 ;; #### This should be split out into byte-compile-nontrivial-function-p. | |
2710 ((or (eq output-type 'lambda) | |
2711 (nthcdr (if (eq output-type 'file) 50 8) byte-compile-output) | |
2712 (assq 'TAG byte-compile-output) ; Not necessary, but speeds up a bit. | |
2713 (not (setq tmp (assq 'byte-return byte-compile-output))) | |
2714 (progn | |
2715 (setq rest (nreverse | |
2716 (cdr (memq tmp (reverse byte-compile-output))))) | |
2717 (while (cond | |
2718 ((memq (car (car rest)) '(byte-varref byte-constant)) | |
2719 (setq tmp (car (cdr (car rest)))) | |
2720 (if (if (eq (car (car rest)) 'byte-constant) | |
2721 (or (consp tmp) | |
2722 (and (symbolp tmp) | |
2723 (not (byte-compile-constant-symbol-p tmp))))) | |
2724 (if maycall | |
2725 (setq body (cons (list 'quote tmp) body))) | |
2726 (setq body (cons tmp body)))) | |
2727 ((and maycall | |
2728 ;; Allow a funcall if at most one atom follows it. | |
2729 (null (nthcdr 3 rest)) | |
2730 (setq tmp | |
2731 ;; XEmacs change for rms funs | |
2732 (or (and | |
2733 (byte-compile-version-cond | |
2734 byte-compile-emacs19-compatibility) | |
2735 (get (car (car rest)) | |
2736 'byte-opcode19-invert)) | |
2737 (get (car (car rest)) | |
2738 'byte-opcode-invert))) | |
2739 (or (null (cdr rest)) | |
2740 (and (memq output-type '(file progn t)) | |
2741 (cdr (cdr rest)) | |
2742 (eq (car (nth 1 rest)) 'byte-discard) | |
2743 (progn (setq rest (cdr rest)) t)))) | |
2744 (setq maycall nil) ; Only allow one real function call. | |
2745 (setq body (nreverse body)) | |
2746 (setq body (list | |
2747 (if (and (eq tmp 'funcall) | |
2748 (eq (car-safe (car body)) 'quote)) | |
2749 (cons (nth 1 (car body)) (cdr body)) | |
2750 (cons tmp body)))) | |
2751 (or (eq output-type 'file) | |
2752 (not (delq nil (mapcar 'consp (cdr (car body)))))))) | |
2753 (setq rest (cdr rest))) | |
2754 rest)) | |
2755 (let ((byte-compile-vector (byte-compile-constants-vector))) | |
2756 (list 'byte-code (byte-compile-lapcode byte-compile-output) | |
2757 byte-compile-vector byte-compile-maxdepth))) | |
2758 ;; it's a trivial function | |
2759 ((cdr body) (cons 'progn (nreverse body))) | |
2760 ((car body))))) | |
2761 | |
2762 ;; Given BODY, compile it and return a new body. | |
2763 (defun byte-compile-top-level-body (body &optional for-effect) | |
2764 (setq body (byte-compile-top-level (cons 'progn body) for-effect t)) | |
2765 (cond ((eq (car-safe body) 'progn) | |
2766 (cdr body)) | |
2767 (body | |
2768 (list body)))) | |
2769 | |
2770 ;; This is the recursive entry point for compiling each subform of an | |
2771 ;; expression. | |
2772 ;; If for-effect is non-nil, byte-compile-form will output a byte-discard | |
2773 ;; before terminating (ie. no value will be left on the stack). | |
2774 ;; A byte-compile handler may, when for-effect is non-nil, choose output code | |
2775 ;; which does not leave a value on the stack, and then set for-effect to nil | |
2776 ;; (to prevent byte-compile-form from outputting the byte-discard). | |
2777 ;; If a handler wants to call another handler, it should do so via | |
2778 ;; byte-compile-form, or take extreme care to handle for-effect correctly. | |
2779 ;; (Use byte-compile-form-do-effect to reset the for-effect flag too.) | |
2780 ;; | |
2781 (defun byte-compile-form (form &optional for-effect) | |
2782 (setq form (macroexpand form byte-compile-macro-environment)) | |
2783 (cond ((not (consp form)) | |
2784 (cond ((or (not (symbolp form)) | |
2785 (byte-compile-constant-symbol-p form)) | |
2786 (byte-compile-constant form)) | |
2787 ((and for-effect byte-compile-delete-errors) | |
2788 (setq for-effect nil)) | |
2789 (t (byte-compile-variable-ref 'byte-varref form)))) | |
2790 ((symbolp (car form)) | |
2791 (let* ((fn (car form)) | |
2792 (handler (get fn 'byte-compile))) | |
2793 (if (memq fn '(t nil)) | |
2794 (byte-compile-warn "%s called as a function" fn)) | |
2795 (if (and handler | |
2796 (or (not (byte-compile-version-cond | |
2797 byte-compile-emacs19-compatibility)) | |
2798 (not (get (get fn 'byte-opcode) 'emacs20-opcode)))) | |
2799 (funcall handler form) | |
2800 (if (memq 'callargs byte-compile-warnings) | |
2801 (byte-compile-callargs-warn form)) | |
2802 (byte-compile-normal-call form)))) | |
2803 ((and (or (compiled-function-p (car form)) | |
2804 (eq (car-safe (car form)) 'lambda)) | |
2805 ;; if the form comes out the same way it went in, that's | |
2806 ;; because it was malformed, and we couldn't unfold it. | |
2807 (not (eq form (setq form (byte-compile-unfold-lambda form))))) | |
2808 (byte-compile-form form for-effect) | |
2809 (setq for-effect nil)) | |
2810 ((byte-compile-normal-call form))) | |
2811 (when for-effect | |
2812 (byte-compile-discard))) | |
2813 | |
2814 (defun byte-compile-normal-call (form) | |
2815 (if byte-compile-generate-call-tree | |
2816 (byte-compile-annotate-call-tree form)) | |
2817 (byte-compile-push-constant (car form)) | |
2818 (mapcar 'byte-compile-form (cdr form)) ; wasteful, but faster. | |
2819 (byte-compile-out 'byte-call (length (cdr form)))) | |
2820 | |
2821 ;; kludge added to XEmacs to work around the bogosities of a nonlexical lisp. | |
2822 (or (fboundp 'globally-boundp) (fset 'globally-boundp 'boundp)) | |
2823 | |
2824 (defun byte-compile-variable-ref (base-op var &optional varbind-flags) | |
2825 (if (or (not (symbolp var)) (byte-compile-constant-symbol-p var)) | |
2826 (byte-compile-warn | |
2827 (case base-op | |
2828 (byte-varref "Variable reference to %s %s") | |
2829 (byte-varset "Attempt to set %s %s") | |
2830 (byte-varbind "Attempt to let-bind %s %s")) | |
2831 (if (symbolp var) "constant symbol" "non-symbol") | |
2832 var) | |
2833 (if (and (get var 'byte-obsolete-variable) | |
2834 (memq 'obsolete byte-compile-warnings)) | |
2835 (let ((ob (get var 'byte-obsolete-variable))) | |
2836 (byte-compile-warn "%s is an obsolete variable; %s" var | |
2837 (if (stringp ob) | |
2838 ob | |
2839 (format "use %s instead." ob))))) | |
2840 (if (and (get var 'byte-compatible-variable) | |
2841 (memq 'pedantic byte-compile-warnings)) | |
2842 (let ((ob (get var 'byte-compatible-variable))) | |
2843 (byte-compile-warn "%s is provided for compatibility; %s" var | |
2844 (if (stringp ob) | |
2845 ob | |
2846 (format "use %s instead." ob))))) | |
2847 (if (memq 'free-vars byte-compile-warnings) | |
2848 (if (eq base-op 'byte-varbind) | |
2849 (setq byte-compile-bound-variables | |
2850 (cons (cons var (or varbind-flags 0)) | |
2851 byte-compile-bound-variables)) | |
2852 (or (globally-boundp var) | |
2853 (let ((cell (assq var byte-compile-bound-variables))) | |
2854 (if cell (setcdr cell | |
2855 (logior (cdr cell) | |
2856 (if (eq base-op 'byte-varset) | |
2857 byte-compile-assigned-bit | |
2858 byte-compile-referenced-bit))))) | |
444 | 2859 (and (boundp 'current-load-list) |
2860 (memq var current-load-list)) | |
428 | 2861 (if (eq base-op 'byte-varset) |
2862 (or (memq var byte-compile-free-assignments) | |
2863 (progn | |
2864 (byte-compile-warn "assignment to free variable %s" | |
2865 var) | |
2866 (setq byte-compile-free-assignments | |
2867 (cons var byte-compile-free-assignments)))) | |
2868 (or (memq var byte-compile-free-references) | |
2869 (progn | |
2870 (byte-compile-warn "reference to free variable %s" var) | |
2871 (setq byte-compile-free-references | |
2872 (cons var byte-compile-free-references))))))))) | |
2873 (let ((tmp (assq var byte-compile-variables))) | |
2874 (or tmp | |
2875 (setq tmp (list var) | |
2876 byte-compile-variables (cons tmp byte-compile-variables))) | |
2877 (byte-compile-out base-op tmp))) | |
2878 | |
2879 (defmacro byte-compile-get-constant (const) | |
2880 `(or (if (stringp ,const) | |
2881 (assoc ,const byte-compile-constants) | |
2882 (assq ,const byte-compile-constants)) | |
2883 (car (setq byte-compile-constants | |
2884 (cons (list ,const) byte-compile-constants))))) | |
2885 | |
2886 ;; Use this when the value of a form is a constant. This obeys for-effect. | |
2887 (defun byte-compile-constant (const) | |
2888 (if for-effect | |
2889 (setq for-effect nil) | |
2890 (byte-compile-out 'byte-constant (byte-compile-get-constant const)))) | |
2891 | |
2892 ;; Use this for a constant that is not the value of its containing form. | |
2893 ;; This ignores for-effect. | |
2894 (defun byte-compile-push-constant (const) | |
2895 (let ((for-effect nil)) | |
2896 (inline (byte-compile-constant const)))) | |
2897 | |
2898 | |
2899 ;; Compile those primitive ordinary functions | |
2900 ;; which have special byte codes just for speed. | |
2901 | |
2902 (defmacro byte-defop-compiler (function &optional compile-handler) | |
2903 ;; add a compiler-form for FUNCTION. | |
446 | 2904 ;; If FUNCTION is a symbol, then the variable "byte-SYMBOL" must name |
2905 ;; the opcode to be used. If is a list, the first element | |
428 | 2906 ;; is the function and the second element is the bytecode-symbol. |
2907 ;; COMPILE-HANDLER is the function to use to compile this byte-op, or | |
2908 ;; may be the abbreviations 0, 1, 2, 3, 0-1, 1-2, 2-3, 0+1, 1+1, 2+1, | |
2909 ;; 0-1+1, 1-2+1, 2-3+1, 0+2, or 1+2. If it is nil, then the handler is | |
2910 ;; "byte-compile-SYMBOL." | |
2911 (let (opcode) | |
2912 (if (symbolp function) | |
2913 (setq opcode (intern (concat "byte-" (symbol-name function)))) | |
2914 (setq opcode (car (cdr function)) | |
2915 function (car function))) | |
2916 (let ((fnform | |
2917 (list 'put (list 'quote function) ''byte-compile | |
2918 (list 'quote | |
2919 (or (cdr (assq compile-handler | |
2920 '((0 . byte-compile-no-args) | |
2921 (1 . byte-compile-one-arg) | |
2922 (2 . byte-compile-two-args) | |
2923 (3 . byte-compile-three-args) | |
2924 (0-1 . byte-compile-zero-or-one-arg) | |
2925 (1-2 . byte-compile-one-or-two-args) | |
2926 (2-3 . byte-compile-two-or-three-args) | |
2927 (0+1 . byte-compile-no-args-with-one-extra) | |
2928 (1+1 . byte-compile-one-arg-with-one-extra) | |
2929 (2+1 . byte-compile-two-args-with-one-extra) | |
2930 (0-1+1 . byte-compile-zero-or-one-arg-with-one-extra) | |
2931 (1-2+1 . byte-compile-one-or-two-args-with-one-extra) | |
2932 (2-3+1 . byte-compile-two-or-three-args-with-one-extra) | |
2933 (0+2 . byte-compile-no-args-with-two-extra) | |
2934 (1+2 . byte-compile-one-arg-with-two-extra) | |
2935 | |
2936 ))) | |
2937 compile-handler | |
2938 (intern (concat "byte-compile-" | |
2939 (symbol-name function)))))))) | |
2940 (if opcode | |
2941 (list 'progn fnform | |
2942 (list 'put (list 'quote function) | |
2943 ''byte-opcode (list 'quote opcode)) | |
2944 (list 'put (list 'quote opcode) | |
2945 ''byte-opcode-invert (list 'quote function))) | |
2946 fnform)))) | |
2947 | |
2948 (defmacro byte-defop-compiler20 (function &optional compile-handler) | |
2949 ;; Just like byte-defop-compiler, but defines an opcode that will only | |
2950 ;; be used when byte-compile-emacs19-compatibility is false. | |
2951 (if (and (byte-compile-single-version) | |
2952 byte-compile-emacs19-compatibility) | |
2953 ;; #### instead of doing nothing, this should do some remprops, | |
2954 ;; #### to protect against the case where a single-version compiler | |
2955 ;; #### is loaded into a world that has contained a multi-version one. | |
2956 nil | |
2957 (list 'progn | |
2958 (list 'put | |
2959 (list 'quote | |
2960 (or (car (cdr-safe function)) | |
2961 (intern (concat "byte-" | |
2962 (symbol-name (or (car-safe function) function)))))) | |
2963 ''emacs20-opcode t) | |
2964 (list 'byte-defop-compiler function compile-handler)))) | |
2965 | |
2966 ;; XEmacs addition: | |
2967 (defmacro byte-defop-compiler-rmsfun (function &optional compile-handler) | |
2968 ;; for functions like `eq' that compile into different opcodes depending | |
2969 ;; on the Emacs version: byte-old-eq for v19, byte-eq for v20. | |
2970 (let ((opcode (intern (concat "byte-" (symbol-name function)))) | |
2971 (opcode19 (intern (concat "byte-old-" (symbol-name function)))) | |
2972 (fnform | |
2973 (list 'put (list 'quote function) ''byte-compile | |
2974 (list 'quote | |
2975 (or (cdr (assq compile-handler | |
2976 '((2 . byte-compile-two-args-19->20) | |
2977 ))) | |
2978 compile-handler | |
2979 (intern (concat "byte-compile-" | |
2980 (symbol-name function)))))))) | |
2981 (list 'progn fnform | |
2982 (list 'put (list 'quote function) | |
2983 ''byte-opcode (list 'quote opcode)) | |
2984 (list 'put (list 'quote function) | |
2985 ''byte-opcode19 (list 'quote opcode19)) | |
2986 (list 'put (list 'quote opcode) | |
2987 ''byte-opcode-invert (list 'quote function)) | |
2988 (list 'put (list 'quote opcode19) | |
2989 ''byte-opcode19-invert (list 'quote function))))) | |
2990 | |
2991 (defmacro byte-defop-compiler-1 (function &optional compile-handler) | |
2992 (list 'byte-defop-compiler (list function nil) compile-handler)) | |
2993 | |
2994 | |
2995 (put 'byte-call 'byte-opcode-invert 'funcall) | |
2996 (put 'byte-list1 'byte-opcode-invert 'list) | |
2997 (put 'byte-list2 'byte-opcode-invert 'list) | |
2998 (put 'byte-list3 'byte-opcode-invert 'list) | |
2999 (put 'byte-list4 'byte-opcode-invert 'list) | |
3000 (put 'byte-listN 'byte-opcode-invert 'list) | |
3001 (put 'byte-concat2 'byte-opcode-invert 'concat) | |
3002 (put 'byte-concat3 'byte-opcode-invert 'concat) | |
3003 (put 'byte-concat4 'byte-opcode-invert 'concat) | |
3004 (put 'byte-concatN 'byte-opcode-invert 'concat) | |
3005 (put 'byte-insertN 'byte-opcode-invert 'insert) | |
3006 | |
3007 ;; How old is this stuff? -slb | |
3008 ;(byte-defop-compiler (dot byte-point) 0+1) | |
3009 ;(byte-defop-compiler (dot-max byte-point-max) 0+1) | |
3010 ;(byte-defop-compiler (dot-min byte-point-min) 0+1) | |
3011 (byte-defop-compiler point 0+1) | |
3012 (byte-defop-compiler-rmsfun eq 2) | |
3013 (byte-defop-compiler point-max 0+1) | |
3014 (byte-defop-compiler point-min 0+1) | |
3015 (byte-defop-compiler following-char 0+1) | |
3016 (byte-defop-compiler preceding-char 0+1) | |
3017 (byte-defop-compiler current-column 0+1) | |
3018 ;; FSF has special function here; generalized here by the 1+2 stuff. | |
3019 (byte-defop-compiler (indent-to-column byte-indent-to) 1+2) | |
3020 (byte-defop-compiler indent-to 1+2) | |
3021 (byte-defop-compiler-rmsfun equal 2) | |
3022 (byte-defop-compiler eolp 0+1) | |
3023 (byte-defop-compiler eobp 0+1) | |
3024 (byte-defop-compiler bolp 0+1) | |
3025 (byte-defop-compiler bobp 0+1) | |
3026 (byte-defop-compiler current-buffer 0) | |
3027 ;;(byte-defop-compiler read-char 0) ;; obsolete | |
3028 (byte-defop-compiler-rmsfun memq 2) | |
3029 (byte-defop-compiler interactive-p 0) | |
3030 (byte-defop-compiler widen 0+1) | |
3031 (byte-defop-compiler end-of-line 0-1+1) | |
3032 (byte-defop-compiler forward-char 0-1+1) | |
3033 (byte-defop-compiler forward-line 0-1+1) | |
3034 (byte-defop-compiler symbolp 1) | |
3035 (byte-defop-compiler consp 1) | |
3036 (byte-defop-compiler stringp 1) | |
3037 (byte-defop-compiler listp 1) | |
3038 (byte-defop-compiler not 1) | |
3039 (byte-defop-compiler (null byte-not) 1) | |
3040 (byte-defop-compiler car 1) | |
3041 (byte-defop-compiler cdr 1) | |
3042 (byte-defop-compiler length 1) | |
3043 (byte-defop-compiler symbol-value 1) | |
3044 (byte-defop-compiler symbol-function 1) | |
3045 (byte-defop-compiler (1+ byte-add1) 1) | |
3046 (byte-defop-compiler (1- byte-sub1) 1) | |
3047 (byte-defop-compiler goto-char 1+1) | |
3048 (byte-defop-compiler char-after 0-1+1) | |
3049 (byte-defop-compiler set-buffer 1) | |
3050 ;;(byte-defop-compiler set-mark 1) ;; obsolete | |
2217 | 3051 (byte-defop-compiler forward-word 0-1+1) |
428 | 3052 (byte-defop-compiler char-syntax 1+1) |
3053 (byte-defop-compiler nreverse 1) | |
3054 (byte-defop-compiler car-safe 1) | |
3055 (byte-defop-compiler cdr-safe 1) | |
3056 (byte-defop-compiler numberp 1) | |
3057 (byte-defop-compiler integerp 1) | |
3058 (byte-defop-compiler skip-chars-forward 1-2+1) | |
3059 (byte-defop-compiler skip-chars-backward 1-2+1) | |
3060 (byte-defop-compiler (eql byte-eq) 2) | |
3061 (byte-defop-compiler20 old-eq 2) | |
3062 (byte-defop-compiler20 old-memq 2) | |
3063 (byte-defop-compiler cons 2) | |
3064 (byte-defop-compiler aref 2) | |
3065 (byte-defop-compiler get 2+1) | |
3066 (byte-defop-compiler nth 2) | |
3067 (byte-defop-compiler substring 2-3) | |
3068 (byte-defop-compiler (move-marker byte-set-marker) 2-3) | |
3069 (byte-defop-compiler set-marker 2-3) | |
3070 (byte-defop-compiler match-beginning 1) | |
3071 (byte-defop-compiler match-end 1) | |
3072 (byte-defop-compiler upcase 1+1) | |
3073 (byte-defop-compiler downcase 1+1) | |
3074 (byte-defop-compiler string= 2) | |
3075 (byte-defop-compiler string< 2) | |
3076 (byte-defop-compiler (string-equal byte-string=) 2) | |
3077 (byte-defop-compiler (string-lessp byte-string<) 2) | |
3078 (byte-defop-compiler20 old-equal 2) | |
3079 (byte-defop-compiler nthcdr 2) | |
3080 (byte-defop-compiler elt 2) | |
3081 (byte-defop-compiler20 old-member 2) | |
3082 (byte-defop-compiler20 old-assq 2) | |
3083 (byte-defop-compiler (rplaca byte-setcar) 2) | |
3084 (byte-defop-compiler (rplacd byte-setcdr) 2) | |
3085 (byte-defop-compiler setcar 2) | |
3086 (byte-defop-compiler setcdr 2) | |
3087 (byte-defop-compiler delete-region 2+1) | |
3088 (byte-defop-compiler narrow-to-region 2+1) | |
3089 (byte-defop-compiler (% byte-rem) 2) | |
3090 (byte-defop-compiler aset 3) | |
3091 | |
4677
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4639
diff
changeset
|
3092 (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
|
3093 (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
|
3094 (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
|
3095 (byte-defop-compiler throw) |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4639
diff
changeset
|
3096 |
428 | 3097 (byte-defop-compiler-rmsfun member 2) |
3098 (byte-defop-compiler-rmsfun assq 2) | |
3099 | |
3100 ;;####(byte-defop-compiler move-to-column 1) | |
3101 (byte-defop-compiler-1 interactive byte-compile-noop) | |
3102 (byte-defop-compiler-1 domain byte-compile-domain) | |
3103 | |
3104 ;; As of GNU Emacs 19.18 and Lucid Emacs 19.8, mod and % are different: `%' | |
3105 ;; means integral remainder and may have a negative result; `mod' is always | |
3106 ;; positive, and accepts floating point args. All code which uses `mod' and | |
3107 ;; requires the new interpretation must be compiled with bytecomp version 2.18 | |
3108 ;; or newer, or the emitted code will run the byte-code for `%' instead of an | |
3109 ;; actual call to `mod'. So be careful of compiling new code with an old | |
3110 ;; compiler. Note also that `%' is more efficient than `mod' because the | |
3111 ;; former is byte-coded and the latter is not. | |
3112 ;;(byte-defop-compiler (mod byte-rem) 2) | |
3113 | |
3114 | |
4677
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4639
diff
changeset
|
3115 (defun byte-compile-warn-wrong-args (form n) |
428 | 3116 (when (memq 'subr-callargs byte-compile-warnings) |
3117 (byte-compile-warn "%s called with %d arg%s, but requires %s" | |
3118 (car form) (length (cdr form)) | |
4677
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4639
diff
changeset
|
3119 (if (= 1 (length (cdr form))) "" "s") n))) |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4639
diff
changeset
|
3120 |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4639
diff
changeset
|
3121 (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
|
3122 (byte-compile-warn-wrong-args form n) |
428 | 3123 ;; get run-time wrong-number-of-args error. |
3124 (byte-compile-normal-call form)) | |
3125 | |
3126 (defun byte-compile-no-args (form) | |
3127 (case (length (cdr form)) | |
3128 (0 (byte-compile-out (get (car form) 'byte-opcode) 0)) | |
3129 (t (byte-compile-subr-wrong-args form "none")))) | |
3130 | |
3131 (defun byte-compile-one-arg (form) | |
3132 (case (length (cdr form)) | |
3133 (1 (byte-compile-form (car (cdr form))) ;; Push the argument | |
3134 (byte-compile-out (get (car form) 'byte-opcode) 0)) | |
3135 (t (byte-compile-subr-wrong-args form 1)))) | |
3136 | |
3137 (defun byte-compile-two-args (form) | |
3138 (case (length (cdr form)) | |
3139 (2 (byte-compile-form (nth 1 form)) ;; Push the arguments | |
3140 (byte-compile-form (nth 2 form)) | |
3141 (byte-compile-out (get (car form) 'byte-opcode) 0)) | |
3142 (t (byte-compile-subr-wrong-args form 2)))) | |
3143 | |
3144 (defun byte-compile-three-args (form) | |
3145 (case (length (cdr form)) | |
3146 (3 (byte-compile-form (nth 1 form)) ;; Push the arguments | |
3147 (byte-compile-form (nth 2 form)) | |
3148 (byte-compile-form (nth 3 form)) | |
3149 (byte-compile-out (get (car form) 'byte-opcode) 0)) | |
3150 (t (byte-compile-subr-wrong-args form 3)))) | |
3151 | |
3152 (defun byte-compile-zero-or-one-arg (form) | |
3153 (case (length (cdr form)) | |
3154 (0 (byte-compile-one-arg (append form '(nil)))) | |
3155 (1 (byte-compile-one-arg form)) | |
3156 (t (byte-compile-subr-wrong-args form "0-1")))) | |
3157 | |
3158 (defun byte-compile-one-or-two-args (form) | |
3159 (case (length (cdr form)) | |
3160 (1 (byte-compile-two-args (append form '(nil)))) | |
3161 (2 (byte-compile-two-args form)) | |
3162 (t (byte-compile-subr-wrong-args form "1-2")))) | |
3163 | |
3164 (defun byte-compile-two-or-three-args (form) | |
3165 (case (length (cdr form)) | |
3166 (2 (byte-compile-three-args (append form '(nil)))) | |
3167 (3 (byte-compile-three-args form)) | |
3168 (t (byte-compile-subr-wrong-args form "2-3")))) | |
3169 | |
3170 ;; from Ben Wing <ben@xemacs.org>: some inlined functions have extra | |
3171 ;; optional args added to them in XEmacs 19.12. Changing the byte | |
3172 ;; interpreter to deal with these args would be wrong and cause | |
3173 ;; incompatibility, so we generate non-inlined calls for those cases. | |
3174 ;; Without the following functions, spurious warnings will be generated; | |
3175 ;; however, they would still compile correctly because | |
3176 ;; `byte-compile-subr-wrong-args' also converts the call to non-inlined. | |
3177 | |
3178 (defun byte-compile-no-args-with-one-extra (form) | |
3179 (case (length (cdr form)) | |
3180 (0 (byte-compile-no-args form)) | |
446 | 3181 (1 (if (eq nil (nth 1 form)) |
3182 (byte-compile-no-args (butlast form)) | |
3183 (byte-compile-normal-call form))) | |
428 | 3184 (t (byte-compile-subr-wrong-args form "0-1")))) |
3185 | |
3186 (defun byte-compile-one-arg-with-one-extra (form) | |
3187 (case (length (cdr form)) | |
3188 (1 (byte-compile-one-arg form)) | |
446 | 3189 (2 (if (eq nil (nth 2 form)) |
3190 (byte-compile-one-arg (butlast form)) | |
3191 (byte-compile-normal-call form))) | |
428 | 3192 (t (byte-compile-subr-wrong-args form "1-2")))) |
3193 | |
3194 (defun byte-compile-two-args-with-one-extra (form) | |
3195 (case (length (cdr form)) | |
3196 (2 (byte-compile-two-args form)) | |
446 | 3197 (3 (if (eq nil (nth 3 form)) |
3198 (byte-compile-two-args (butlast form)) | |
3199 (byte-compile-normal-call form))) | |
428 | 3200 (t (byte-compile-subr-wrong-args form "2-3")))) |
3201 | |
3202 (defun byte-compile-zero-or-one-arg-with-one-extra (form) | |
3203 (case (length (cdr form)) | |
3204 (0 (byte-compile-one-arg (append form '(nil)))) | |
3205 (1 (byte-compile-one-arg form)) | |
446 | 3206 (2 (if (eq nil (nth 2 form)) |
3207 (byte-compile-one-arg (butlast form)) | |
3208 (byte-compile-normal-call form))) | |
428 | 3209 (t (byte-compile-subr-wrong-args form "0-2")))) |
3210 | |
3211 (defun byte-compile-one-or-two-args-with-one-extra (form) | |
3212 (case (length (cdr form)) | |
3213 (1 (byte-compile-two-args (append form '(nil)))) | |
3214 (2 (byte-compile-two-args form)) | |
446 | 3215 (3 (if (eq nil (nth 3 form)) |
3216 (byte-compile-two-args (butlast form)) | |
3217 (byte-compile-normal-call form))) | |
428 | 3218 (t (byte-compile-subr-wrong-args form "1-3")))) |
3219 | |
3220 (defun byte-compile-two-or-three-args-with-one-extra (form) | |
3221 (case (length (cdr form)) | |
3222 (2 (byte-compile-three-args (append form '(nil)))) | |
3223 (3 (byte-compile-three-args form)) | |
446 | 3224 (4 (if (eq nil (nth 4 form)) |
3225 (byte-compile-three-args (butlast form)) | |
3226 (byte-compile-normal-call form))) | |
428 | 3227 (t (byte-compile-subr-wrong-args form "2-4")))) |
3228 | |
3229 (defun byte-compile-no-args-with-two-extra (form) | |
3230 (case (length (cdr form)) | |
3231 (0 (byte-compile-no-args form)) | |
3232 ((1 2) (byte-compile-normal-call form)) | |
3233 (t (byte-compile-subr-wrong-args form "0-2")))) | |
3234 | |
3235 (defun byte-compile-one-arg-with-two-extra (form) | |
3236 (case (length (cdr form)) | |
3237 (1 (byte-compile-one-arg form)) | |
3238 ((2 3) (byte-compile-normal-call form)) | |
3239 (t (byte-compile-subr-wrong-args form "1-3")))) | |
3240 | |
3241 ;; XEmacs: used for functions that have a different opcode in v19 than v20. | |
3242 ;; this includes `eq', `equal', and other old-ified functions. | |
3243 (defun byte-compile-two-args-19->20 (form) | |
3244 (if (not (= (length form) 3)) | |
3245 (byte-compile-subr-wrong-args form 2) | |
3246 (byte-compile-form (car (cdr form))) ;; Push the arguments | |
3247 (byte-compile-form (nth 2 form)) | |
3248 (if (byte-compile-version-cond byte-compile-emacs19-compatibility) | |
3249 (byte-compile-out (get (car form) 'byte-opcode19) 0) | |
3250 (byte-compile-out (get (car form) 'byte-opcode) 0)))) | |
3251 | |
3252 (defun byte-compile-noop (form) | |
3253 (byte-compile-constant nil)) | |
3254 | |
3255 (defun byte-compile-discard () | |
3256 (byte-compile-out 'byte-discard 0)) | |
3257 | |
446 | 3258 (defun byte-compile-max (form) |
3259 (let ((args (cdr form))) | |
428 | 3260 (case (length args) |
446 | 3261 (0 (byte-compile-subr-wrong-args form "1 or more")) |
3262 (1 (byte-compile-form (car args)) | |
3263 (when (not byte-compile-delete-errors) | |
3264 (byte-compile-out 'byte-dup 0) | |
3265 (byte-compile-out 'byte-max 0))) | |
428 | 3266 (t (byte-compile-form (car args)) |
446 | 3267 (dolist (elt (cdr args)) |
3268 (byte-compile-form elt) | |
3269 (byte-compile-out 'byte-max 0)))))) | |
3270 | |
3271 (defun byte-compile-min (form) | |
3272 (let ((args (cdr form))) | |
3273 (case (length args) | |
3274 (0 (byte-compile-subr-wrong-args form "1 or more")) | |
3275 (1 (byte-compile-form (car args)) | |
3276 (when (not byte-compile-delete-errors) | |
3277 (byte-compile-out 'byte-dup 0) | |
3278 (byte-compile-out 'byte-min 0))) | |
3279 (t (byte-compile-form (car args)) | |
3280 (dolist (elt (cdr args)) | |
3281 (byte-compile-form elt) | |
3282 (byte-compile-out 'byte-min 0)))))) | |
428 | 3283 |
3284 | |
3285 ;; more complicated compiler macros | |
3286 | |
3287 (byte-defop-compiler list) | |
3288 (byte-defop-compiler concat) | |
3289 (byte-defop-compiler fset) | |
3290 (byte-defop-compiler insert) | |
3291 (byte-defop-compiler-1 function byte-compile-function-form) | |
446 | 3292 (byte-defop-compiler max) |
3293 (byte-defop-compiler min) | |
3294 (byte-defop-compiler (+ byte-plus) byte-compile-plus) | |
3295 (byte-defop-compiler-1 - byte-compile-minus) | |
3296 (byte-defop-compiler (* byte-mult) byte-compile-mult) | |
3297 (byte-defop-compiler (/ byte-quo) byte-compile-quo) | |
428 | 3298 (byte-defop-compiler nconc) |
3299 (byte-defop-compiler-1 beginning-of-line) | |
3300 | |
3301 (byte-defop-compiler (= byte-eqlsign) byte-compile-arithcompare) | |
3302 (byte-defop-compiler (< byte-lss) byte-compile-arithcompare) | |
3303 (byte-defop-compiler (> byte-gtr) byte-compile-arithcompare) | |
3304 (byte-defop-compiler (<= byte-leq) byte-compile-arithcompare) | |
3305 (byte-defop-compiler (>= byte-geq) byte-compile-arithcompare) | |
3306 | |
3307 (defun byte-compile-arithcompare (form) | |
3308 (case (length (cdr form)) | |
3309 (0 (byte-compile-subr-wrong-args form "1 or more")) | |
549 | 3310 (1 (if byte-compile-delete-errors |
3311 (byte-compile-constant t) | |
3312 (byte-compile-normal-call form))) | |
428 | 3313 (2 (byte-compile-two-args form)) |
3314 (t (byte-compile-normal-call form)))) | |
3315 | |
3316 (byte-defop-compiler /= byte-compile-/=) | |
3317 | |
3318 (defun byte-compile-/= (form) | |
3319 (case (length (cdr form)) | |
3320 (0 (byte-compile-subr-wrong-args form "1 or more")) | |
3321 (1 (byte-compile-constant t)) | |
3322 ;; optimize (/= X Y) to (not (= X Y)) | |
3323 (2 (byte-compile-form-do-effect `(not (= ,@(cdr form))))) | |
3324 (t (byte-compile-normal-call form)))) | |
3325 | |
3326 ;; buffer-substring now has its own function. This used to be | |
3327 ;; 2+1, but now all args are optional. | |
3328 (byte-defop-compiler buffer-substring) | |
3329 | |
3330 (defun byte-compile-buffer-substring (form) | |
3331 ;; buffer-substring used to take exactly two args, but now takes 0-3. | |
3332 ;; convert 0-2 to two args and use special bytecode operand. | |
3333 ;; convert 3 args to a normal call. | |
3334 (case (length (cdr form)) | |
3335 (0 (byte-compile-two-args (append form '(nil nil)))) | |
3336 (1 (byte-compile-two-args (append form '(nil)))) | |
3337 (2 (byte-compile-two-args form)) | |
3338 (3 (byte-compile-normal-call form)) | |
3339 (t (byte-compile-subr-wrong-args form "0-3")))) | |
3340 | |
3341 (defun byte-compile-list (form) | |
3342 (let* ((args (cdr form)) | |
3343 (nargs (length args))) | |
3344 (cond | |
3345 ((= nargs 0) | |
3346 (byte-compile-constant nil)) | |
3347 ((< nargs 5) | |
3348 (mapcar 'byte-compile-form args) | |
3349 (byte-compile-out | |
3350 (aref [byte-list1 byte-list2 byte-list3 byte-list4] (1- nargs)) | |
3351 0)) | |
3352 ((< nargs 256) | |
3353 (mapcar 'byte-compile-form args) | |
3354 (byte-compile-out 'byte-listN nargs)) | |
3355 (t (byte-compile-normal-call form))))) | |
3356 | |
3357 (defun byte-compile-concat (form) | |
3358 (let* ((args (cdr form)) | |
3359 (nargs (length args))) | |
3360 ;; Concat of one arg is not a no-op if arg is not a string. | |
3361 (cond | |
3362 ((memq nargs '(2 3 4)) | |
3363 (mapcar 'byte-compile-form args) | |
3364 (byte-compile-out | |
3365 (aref [byte-concat2 byte-concat3 byte-concat4] (- nargs 2)) | |
3366 0)) | |
3367 ((eq nargs 0) | |
3368 (byte-compile-form "")) | |
3369 ((< nargs 256) | |
3370 (mapcar 'byte-compile-form args) | |
3371 (byte-compile-out 'byte-concatN nargs)) | |
3372 ((byte-compile-normal-call form))))) | |
3373 | |
446 | 3374 (defun byte-compile-plus (form) |
3375 (let ((args (cdr form))) | |
3376 (case (length args) | |
3377 (0 (byte-compile-constant 0)) | |
3378 (1 (byte-compile-plus (append form '(0)))) | |
3379 (t (byte-compile-form (car args)) | |
3380 (dolist (elt (cdr args)) | |
3381 (case elt | |
3382 (0 (when (not byte-compile-delete-errors) | |
3383 (byte-compile-constant 0) | |
3384 (byte-compile-out 'byte-plus 0))) | |
3385 (+1 (byte-compile-out 'byte-add1 0)) | |
3386 (-1 (byte-compile-out 'byte-sub1 0)) | |
3387 (t | |
3388 (byte-compile-form elt) | |
3389 (byte-compile-out 'byte-plus 0)))))))) | |
3390 | |
428 | 3391 (defun byte-compile-minus (form) |
3392 (let ((args (cdr form))) | |
3393 (case (length args) | |
3394 (0 (byte-compile-subr-wrong-args form "1 or more")) | |
3395 (1 (byte-compile-form (car args)) | |
3396 (byte-compile-out 'byte-negate 0)) | |
3397 (t (byte-compile-form (car args)) | |
3398 (dolist (elt (cdr args)) | |
446 | 3399 (case elt |
3400 (0 (when (not byte-compile-delete-errors) | |
3401 (byte-compile-constant 0) | |
3402 (byte-compile-out 'byte-diff 0))) | |
3403 (+1 (byte-compile-out 'byte-sub1 0)) | |
3404 (-1 (byte-compile-out 'byte-add1 0)) | |
3405 (t | |
3406 (byte-compile-form elt) | |
3407 (byte-compile-out 'byte-diff 0)))))))) | |
3408 | |
3409 (defun byte-compile-mult (form) | |
3410 (let ((args (cdr form))) | |
3411 (case (length args) | |
3412 (0 (byte-compile-constant 1)) | |
3413 (1 (byte-compile-mult (append form '(1)))) | |
3414 (t (byte-compile-form (car args)) | |
3415 (dolist (elt (cdr args)) | |
3416 (case elt | |
3417 (1 (when (not byte-compile-delete-errors) | |
3418 (byte-compile-constant 1) | |
3419 (byte-compile-out 'byte-mult 0))) | |
3420 (-1 (byte-compile-out 'byte-negate 0)) | |
3421 (2 (byte-compile-out 'byte-dup 0) | |
3422 (byte-compile-out 'byte-plus 0)) | |
3423 (t | |
3424 (byte-compile-form elt) | |
3425 (byte-compile-out 'byte-mult 0)))))))) | |
428 | 3426 |
3427 (defun byte-compile-quo (form) | |
3428 (let ((args (cdr form))) | |
3429 (case (length args) | |
3430 (0 (byte-compile-subr-wrong-args form "1 or more")) | |
3431 (1 (byte-compile-constant 1) | |
3432 (byte-compile-form (car args)) | |
3433 (byte-compile-out 'byte-quo 0)) | |
3434 (t (byte-compile-form (car args)) | |
3435 (dolist (elt (cdr args)) | |
446 | 3436 (case elt |
3437 (+1 (when (not byte-compile-delete-errors) | |
3438 (byte-compile-constant 1) | |
3439 (byte-compile-out 'byte-quo 0))) | |
3440 (-1 (byte-compile-out 'byte-negate 0)) | |
3441 (t | |
3442 (when (and (numberp elt) (= elt 0)) | |
3443 (byte-compile-warn "Attempt to divide by zero: %s" form)) | |
3444 (byte-compile-form elt) | |
3445 (byte-compile-out 'byte-quo 0)))))))) | |
428 | 3446 |
3447 (defun byte-compile-nconc (form) | |
3448 (let ((args (cdr form))) | |
3449 (case (length args) | |
3450 (0 (byte-compile-constant nil)) | |
3451 ;; nconc of one arg is a noop, even if that arg isn't a list. | |
3452 (1 (byte-compile-form (car args))) | |
3453 (t (byte-compile-form (car args)) | |
3454 (dolist (elt (cdr args)) | |
3455 (byte-compile-form elt) | |
3456 (byte-compile-out 'byte-nconc 0)))))) | |
3457 | |
3458 (defun byte-compile-fset (form) | |
3459 ;; warn about forms like (fset 'foo '(lambda () ...)) | |
3460 ;; (where the lambda expression is non-trivial...) | |
3461 ;; Except don't warn if the first argument is 'make-byte-code, because | |
3462 ;; I'm sick of getting mail asking me whether that warning is a problem. | |
3463 (let ((fn (nth 2 form)) | |
3464 body) | |
3465 (when (and (eq (car-safe fn) 'quote) | |
3466 (eq (car-safe (setq fn (nth 1 fn))) 'lambda) | |
3467 (not (eq (car-safe (cdr-safe (nth 1 form))) 'make-byte-code))) | |
3468 (setq body (cdr (cdr fn))) | |
3469 (if (stringp (car body)) (setq body (cdr body))) | |
3470 (if (eq 'interactive (car-safe (car body))) (setq body (cdr body))) | |
3471 (if (and (consp (car body)) | |
3472 (not (eq 'byte-code (car (car body))))) | |
3473 (byte-compile-warn | |
3474 "A quoted lambda form is the second argument of fset. This is probably | |
3475 not what you want, as that lambda cannot be compiled. Consider using | |
3476 the syntax (function (lambda (...) ...)) instead.")))) | |
3477 (byte-compile-two-args form)) | |
3478 | |
3479 (defun byte-compile-funarg (form) | |
3480 ;; (mapcar '(lambda (x) ..) ..) ==> (mapcar (function (lambda (x) ..)) ..) | |
3481 ;; for cases where it's guaranteed that first arg will be used as a lambda. | |
3482 (byte-compile-normal-call | |
3483 (let ((fn (nth 1 form))) | |
3484 (if (and (eq (car-safe fn) 'quote) | |
3485 (eq (car-safe (nth 1 fn)) 'lambda)) | |
3486 (cons (car form) | |
3487 (cons (cons 'function (cdr fn)) | |
3488 (cdr (cdr form)))) | |
3489 form)))) | |
3490 | |
3491 ;; (function foo) must compile like 'foo, not like (symbol-function 'foo). | |
3492 ;; Otherwise it will be incompatible with the interpreter, | |
3493 ;; and (funcall (function foo)) will lose with autoloads. | |
3494 | |
3495 (defun byte-compile-function-form (form) | |
3496 (byte-compile-constant | |
3497 (cond ((symbolp (nth 1 form)) | |
3498 (nth 1 form)) | |
3499 ((byte-compile-lambda (nth 1 form)))))) | |
3500 | |
3501 (defun byte-compile-insert (form) | |
3502 (cond ((null (cdr form)) | |
3503 (byte-compile-constant nil)) | |
3504 ((<= (length form) 256) | |
3505 (mapcar 'byte-compile-form (cdr form)) | |
3506 (if (cdr (cdr form)) | |
3507 (byte-compile-out 'byte-insertN (length (cdr form))) | |
3508 (byte-compile-out 'byte-insert 0))) | |
3509 ((memq t (mapcar 'consp (cdr (cdr form)))) | |
3510 (byte-compile-normal-call form)) | |
3511 ;; We can split it; there is no function call after inserting 1st arg. | |
3512 (t | |
3513 (while (setq form (cdr form)) | |
3514 (byte-compile-form (car form)) | |
3515 (byte-compile-out 'byte-insert 0) | |
3516 (when (cdr form) | |
3517 (byte-compile-discard)))))) | |
3518 | |
3519 ;; alas, the old (pre-19.12, and all existing versions of FSFmacs 19) | |
3520 ;; byte compiler will generate incorrect code for | |
3521 ;; (beginning-of-line nil buffer) because it buggily doesn't | |
3522 ;; check the number of arguments passed to beginning-of-line. | |
3523 | |
3524 (defun byte-compile-beginning-of-line (form) | |
3525 (let ((len (length form))) | |
3526 (cond ((> len 3) | |
3527 (byte-compile-subr-wrong-args form "0-2")) | |
3528 ((or (= len 3) (not (byte-compile-constp (nth 1 form)))) | |
3529 (byte-compile-normal-call form)) | |
3530 (t | |
3531 (byte-compile-form | |
3532 (list 'forward-line | |
3533 (if (integerp (setq form (or (eval (nth 1 form)) 1))) | |
3534 (1- form) | |
3535 (byte-compile-warn | |
3536 "Non-numeric arg to beginning-of-line: %s" form) | |
3537 (list '1- (list 'quote form)))) | |
3538 t) | |
3539 (byte-compile-constant nil))))) | |
3540 | |
3541 | |
3542 (byte-defop-compiler set) | |
3543 (byte-defop-compiler-1 setq) | |
3544 (byte-defop-compiler-1 set-default) | |
3545 (byte-defop-compiler-1 setq-default) | |
3546 | |
3547 (byte-defop-compiler-1 quote) | |
3548 (byte-defop-compiler-1 quote-form) | |
3549 | |
3550 (defun byte-compile-setq (form) | |
3551 (let ((args (cdr form)) var val) | |
3552 (if (null args) | |
3553 ;; (setq), with no arguments. | |
3554 (byte-compile-form nil for-effect) | |
3555 (while args | |
3556 (setq var (pop args)) | |
3557 (if (null args) | |
3558 ;; Odd number of args? Let `set' get the error. | |
3559 (byte-compile-form `(set ',var) for-effect) | |
3560 (setq val (pop args)) | |
3561 (if (keywordp var) | |
3562 ;; (setq :foo ':foo) compatibility kludge | |
3563 (byte-compile-form `(set ',var ,val) (if args t for-effect)) | |
3564 (byte-compile-form val) | |
3565 (unless (or args for-effect) | |
3566 (byte-compile-out 'byte-dup 0)) | |
3567 (byte-compile-variable-ref 'byte-varset var)))))) | |
3568 (setq for-effect nil)) | |
3569 | |
3570 (defun byte-compile-set (form) | |
3571 ;; Compile (set 'foo x) as (setq foo x) for trivially better code and so | |
3572 ;; that we get applicable warnings. Compile everything else (including | |
3573 ;; malformed calls) like a normal 2-arg byte-coded function. | |
3574 (let ((symform (nth 1 form)) | |
3575 (valform (nth 2 form)) | |
3576 sym) | |
3577 (if (and (= (length form) 3) | |
3578 (= (safe-length symform) 2) | |
3579 (eq (car symform) 'quote) | |
3580 (symbolp (setq sym (car (cdr symform)))) | |
3581 (not (byte-compile-constant-symbol-p sym))) | |
3582 (byte-compile-setq `(setq ,sym ,valform)) | |
3583 (byte-compile-two-args form)))) | |
3584 | |
3585 (defun byte-compile-setq-default (form) | |
3586 (let ((args (cdr form))) | |
3587 (if (null args) | |
3588 ;; (setq-default), with no arguments. | |
3589 (byte-compile-form nil for-effect) | |
3590 ;; emit multiple calls to `set-default' if necessary | |
3591 (while args | |
3592 (byte-compile-form | |
3593 ;; Odd number of args? Let `set-default' get the error. | |
3594 `(set-default ',(pop args) ,@(if args (list (pop args)) nil)) | |
3595 (if args t for-effect))))) | |
3596 (setq for-effect nil)) | |
3597 | |
3598 | |
3599 (defun byte-compile-set-default (form) | |
3600 (let* ((args (cdr form)) | |
3601 (nargs (length args)) | |
3602 (var (car args))) | |
3603 (when (and (= (safe-length var) 2) | |
3604 (eq (car var) 'quote)) | |
3605 (let ((sym (nth 1 var))) | |
3606 (cond | |
3607 ((not (symbolp sym)) | |
3608 (byte-compile-warn "Attempt to set-globally non-symbol %s" sym)) | |
3609 ((byte-compile-constant-symbol-p sym) | |
3610 (byte-compile-warn "Attempt to set-globally constant symbol %s" sym)) | |
3611 ((let ((cell (assq sym byte-compile-bound-variables))) | |
3612 (and cell | |
3613 (setcdr cell (logior (cdr cell) byte-compile-assigned-bit)) | |
3614 t))) | |
3615 ;; notice calls to set-default/setq-default for variables which | |
3616 ;; have not been declared with defvar/defconst. | |
3617 ((globally-boundp sym)) ; OK | |
3618 ((not (memq 'free-vars byte-compile-warnings))) ; warnings suppressed? | |
3619 ((memq sym byte-compile-free-assignments)) ; already warned about sym | |
3620 (t | |
3621 (byte-compile-warn "assignment to free variable %s" sym) | |
3622 (push sym byte-compile-free-assignments))))) | |
3623 (if (= nargs 2) | |
3624 ;; now emit a normal call to set-default | |
3625 (byte-compile-normal-call form) | |
3626 (byte-compile-subr-wrong-args form 2)))) | |
3627 | |
3628 | |
3629 (defun byte-compile-quote (form) | |
3630 (byte-compile-constant (car (cdr form)))) | |
3631 | |
3632 (defun byte-compile-quote-form (form) | |
3633 (byte-compile-constant (byte-compile-top-level (nth 1 form)))) | |
3634 | |
3635 | |
3636 ;;; control structures | |
3637 | |
3638 (defun byte-compile-body (body &optional for-effect) | |
3639 (while (cdr body) | |
3640 (byte-compile-form (car body) t) | |
3641 (setq body (cdr body))) | |
3642 (byte-compile-form (car body) for-effect)) | |
3643 | |
3644 (proclaim-inline byte-compile-body-do-effect) | |
3645 (defun byte-compile-body-do-effect (body) | |
3646 (byte-compile-body body for-effect) | |
3647 (setq for-effect nil)) | |
3648 | |
3649 (proclaim-inline byte-compile-form-do-effect) | |
3650 (defun byte-compile-form-do-effect (form) | |
3651 (byte-compile-form form for-effect) | |
3652 (setq for-effect nil)) | |
3653 | |
3654 (byte-defop-compiler-1 inline byte-compile-progn) | |
3655 (byte-defop-compiler-1 progn) | |
3656 (byte-defop-compiler-1 prog1) | |
4677
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4639
diff
changeset
|
3657 (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
|
3658 (byte-defop-compiler-1 values) |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4639
diff
changeset
|
3659 (byte-defop-compiler-1 values-list) |
428 | 3660 (byte-defop-compiler-1 prog2) |
3661 (byte-defop-compiler-1 if) | |
3662 (byte-defop-compiler-1 cond) | |
3663 (byte-defop-compiler-1 and) | |
3664 (byte-defop-compiler-1 or) | |
3665 (byte-defop-compiler-1 while) | |
3666 (byte-defop-compiler-1 funcall) | |
3667 (byte-defop-compiler-1 apply byte-compile-funarg) | |
3668 (byte-defop-compiler-1 mapcar byte-compile-funarg) | |
3669 (byte-defop-compiler-1 mapatoms byte-compile-funarg) | |
3670 (byte-defop-compiler-1 mapconcat byte-compile-funarg) | |
3671 (byte-defop-compiler-1 let) | |
3672 (byte-defop-compiler-1 let*) | |
3673 | |
3674 (defun byte-compile-progn (form) | |
3675 (byte-compile-body-do-effect (cdr form))) | |
3676 | |
3677 (defun byte-compile-prog1 (form) | |
3678 (setq form (cdr form)) | |
4677
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4639
diff
changeset
|
3679 ;; #'prog1 never returns multiple values: |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4639
diff
changeset
|
3680 (byte-compile-form-do-effect (list 'values (pop form))) |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4639
diff
changeset
|
3681 (byte-compile-body form t)) |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4639
diff
changeset
|
3682 |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4639
diff
changeset
|
3683 (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
|
3684 (setq form (cdr form)) |
428 | 3685 (byte-compile-form-do-effect (pop form)) |
3686 (byte-compile-body form t)) | |
3687 | |
4677
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4639
diff
changeset
|
3688 (defun byte-compile-values (form) |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4639
diff
changeset
|
3689 (if (and (= 2 (length form)) |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4639
diff
changeset
|
3690 (byte-compile-constp (second form))) |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4639
diff
changeset
|
3691 (byte-compile-form-do-effect (second form)) |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4639
diff
changeset
|
3692 (byte-compile-normal-call form))) |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4639
diff
changeset
|
3693 |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4639
diff
changeset
|
3694 (defun byte-compile-values-list (form) |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4639
diff
changeset
|
3695 (if (and (= 2 (length form)) |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4639
diff
changeset
|
3696 (or (null (second form)) |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4639
diff
changeset
|
3697 (and (consp (second form)) |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4639
diff
changeset
|
3698 (eq (car (second form)) |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4639
diff
changeset
|
3699 'quote) |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4639
diff
changeset
|
3700 (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
|
3701 (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
|
3702 (byte-compile-normal-call form))) |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4639
diff
changeset
|
3703 |
428 | 3704 (defun byte-compile-prog2 (form) |
3705 (setq form (cdr form)) | |
3706 (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
|
3707 ;; #'prog2 never returns multiple values: |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4639
diff
changeset
|
3708 (byte-compile-form-do-effect (list 'values (pop form))) |
428 | 3709 (byte-compile-body form t)) |
3710 | |
3711 (defmacro byte-compile-goto-if (cond discard tag) | |
3712 `(byte-compile-goto | |
3713 (if ,cond | |
3714 (if ,discard 'byte-goto-if-not-nil 'byte-goto-if-not-nil-else-pop) | |
3715 (if ,discard 'byte-goto-if-nil 'byte-goto-if-nil-else-pop)) | |
3716 ,tag)) | |
3717 | |
3718 (defun byte-compile-if (form) | |
3719 (byte-compile-form (car (cdr form))) | |
3720 (if (null (nthcdr 3 form)) | |
3721 ;; No else-forms | |
3722 (let ((donetag (byte-compile-make-tag))) | |
3723 (byte-compile-goto-if nil for-effect donetag) | |
3724 (byte-compile-form (nth 2 form) for-effect) | |
3725 (byte-compile-out-tag donetag)) | |
3726 (let ((donetag (byte-compile-make-tag)) (elsetag (byte-compile-make-tag))) | |
3727 (byte-compile-goto 'byte-goto-if-nil elsetag) | |
3728 (byte-compile-form (nth 2 form) for-effect) | |
3729 (byte-compile-goto 'byte-goto donetag) | |
3730 (byte-compile-out-tag elsetag) | |
3731 (byte-compile-body (cdr (cdr (cdr form))) for-effect) | |
3732 (byte-compile-out-tag donetag))) | |
3733 (setq for-effect nil)) | |
3734 | |
3735 (defun byte-compile-cond (clauses) | |
3736 (let ((donetag (byte-compile-make-tag)) | |
3737 nexttag clause) | |
3738 (while (setq clauses (cdr clauses)) | |
3739 (setq clause (car clauses)) | |
3740 (cond ((or (eq (car clause) t) | |
3741 (and (eq (car-safe (car clause)) 'quote) | |
3742 (car-safe (cdr-safe (car clause))))) | |
3743 ;; Unconditional clause | |
3744 (setq clause (cons t clause) | |
3745 clauses nil)) | |
3746 ((cdr clauses) | |
3747 (byte-compile-form (car clause)) | |
3748 (if (null (cdr clause)) | |
3749 ;; First clause is a singleton. | |
3750 (byte-compile-goto-if t for-effect donetag) | |
3751 (setq nexttag (byte-compile-make-tag)) | |
3752 (byte-compile-goto 'byte-goto-if-nil nexttag) | |
3753 (byte-compile-body (cdr clause) for-effect) | |
3754 (byte-compile-goto 'byte-goto donetag) | |
3755 (byte-compile-out-tag nexttag))))) | |
3756 ;; Last clause | |
3757 (and (cdr clause) (not (eq (car clause) t)) | |
3758 (progn (byte-compile-form (car clause)) | |
3759 (byte-compile-goto-if nil for-effect donetag) | |
3760 (setq clause (cdr clause)))) | |
3761 (byte-compile-body-do-effect clause) | |
3762 (byte-compile-out-tag donetag))) | |
3763 | |
3764 (defun byte-compile-and (form) | |
3765 (let ((failtag (byte-compile-make-tag)) | |
3766 (args (cdr form))) | |
3767 (if (null args) | |
3768 (byte-compile-form-do-effect t) | |
3769 (while (cdr args) | |
3770 (byte-compile-form (car args)) | |
3771 (byte-compile-goto-if nil for-effect failtag) | |
3772 (setq args (cdr args))) | |
3773 (byte-compile-form-do-effect (car args)) | |
3774 (byte-compile-out-tag failtag)))) | |
3775 | |
3776 (defun byte-compile-or (form) | |
3777 (let ((wintag (byte-compile-make-tag)) | |
3778 (args (cdr form))) | |
3779 (if (null args) | |
3780 (byte-compile-form-do-effect nil) | |
3781 (while (cdr args) | |
3782 (byte-compile-form (car args)) | |
3783 (byte-compile-goto-if t for-effect wintag) | |
3784 (setq args (cdr args))) | |
3785 (byte-compile-form-do-effect (car args)) | |
3786 (byte-compile-out-tag wintag)))) | |
3787 | |
3788 (defun byte-compile-while (form) | |
3789 (let ((endtag (byte-compile-make-tag)) | |
3790 (looptag (byte-compile-make-tag))) | |
3791 (byte-compile-out-tag looptag) | |
3792 (byte-compile-form (car (cdr form))) | |
3793 (byte-compile-goto-if nil for-effect endtag) | |
3794 (byte-compile-body (cdr (cdr form)) t) | |
3795 (byte-compile-goto 'byte-goto looptag) | |
3796 (byte-compile-out-tag endtag) | |
3797 (setq for-effect nil))) | |
3798 | |
3799 (defun byte-compile-funcall (form) | |
3800 (mapcar 'byte-compile-form (cdr form)) | |
3801 (byte-compile-out 'byte-call (length (cdr (cdr form))))) | |
3802 | |
3803 | |
3804 (defun byte-compile-let (form) | |
3805 ;; First compute the binding values in the old scope. | |
3806 (let ((varlist (car (cdr form)))) | |
3807 (while varlist | |
3808 (if (consp (car varlist)) | |
3809 (byte-compile-form (car (cdr (car varlist)))) | |
3810 (byte-compile-push-constant nil)) | |
3811 (setq varlist (cdr varlist)))) | |
3812 (let ((byte-compile-bound-variables | |
3813 (cons 'new-scope byte-compile-bound-variables)) | |
3814 (varlist (reverse (car (cdr form)))) | |
3815 (extra-flags | |
3816 ;; If this let is of the form (let (...) (byte-code ...)) | |
3817 ;; then assume that it is the result of a transformation of | |
3818 ;; ((lambda (...) (byte-code ... )) ...) and thus compile | |
3819 ;; the variable bindings as if they were arglist bindings | |
3820 ;; (which matters for what warnings.) | |
3821 (if (eq 'byte-code (car-safe (nth 2 form))) | |
3822 byte-compile-arglist-bit | |
3823 nil))) | |
3824 (while varlist | |
3825 (byte-compile-variable-ref 'byte-varbind | |
3826 (if (consp (car varlist)) | |
3827 (car (car varlist)) | |
3828 (car varlist)) | |
3829 extra-flags) | |
3830 (setq varlist (cdr varlist))) | |
3831 (byte-compile-body-do-effect (cdr (cdr form))) | |
3832 (if (memq 'unused-vars byte-compile-warnings) | |
3833 ;; done compiling in this scope, warn now. | |
3834 (byte-compile-warn-about-unused-variables)) | |
3835 (byte-compile-out 'byte-unbind (length (car (cdr form)))))) | |
3836 | |
3837 (defun byte-compile-let* (form) | |
3838 (let ((byte-compile-bound-variables | |
3839 (cons 'new-scope byte-compile-bound-variables)) | |
3840 (varlist (copy-sequence (car (cdr form))))) | |
3841 (while varlist | |
3842 (if (atom (car varlist)) | |
3843 (byte-compile-push-constant nil) | |
3844 (byte-compile-form (car (cdr (car varlist)))) | |
3845 (setcar varlist (car (car varlist)))) | |
3846 (byte-compile-variable-ref 'byte-varbind (car varlist)) | |
3847 (setq varlist (cdr varlist))) | |
3848 (byte-compile-body-do-effect (cdr (cdr form))) | |
3849 (if (memq 'unused-vars byte-compile-warnings) | |
3850 ;; done compiling in this scope, warn now. | |
3851 (byte-compile-warn-about-unused-variables)) | |
3852 (byte-compile-out 'byte-unbind (length (car (cdr form)))))) | |
3853 | |
3854 | |
3855 ;;(byte-defop-compiler-1 /= byte-compile-negated) | |
3856 (byte-defop-compiler-1 atom byte-compile-negated) | |
3857 (byte-defop-compiler-1 nlistp byte-compile-negated) | |
3858 | |
3859 ;;(put '/= 'byte-compile-negated-op '=) | |
3860 (put 'atom 'byte-compile-negated-op 'consp) | |
3861 (put 'nlistp 'byte-compile-negated-op 'listp) | |
3862 | |
3863 (defun byte-compile-negated (form) | |
3864 (byte-compile-form-do-effect (byte-compile-negation-optimizer form))) | |
3865 | |
3866 ;; Even when optimization is off, atom is optimized to (not (consp ...)). | |
3867 (defun byte-compile-negation-optimizer (form) | |
3868 ;; an optimizer for forms where <form1> is less efficient than (not <form2>) | |
3869 (list 'not | |
3870 (cons (or (get (car form) 'byte-compile-negated-op) | |
3871 (error | |
3872 "Compiler error: `%s' has no `byte-compile-negated-op' property" | |
3873 (car form))) | |
3874 (cdr form)))) | |
3875 | |
3876 ;;; other tricky macro-like special-forms | |
3877 | |
3878 (byte-defop-compiler-1 catch) | |
3879 (byte-defop-compiler-1 unwind-protect) | |
3880 (byte-defop-compiler-1 condition-case) | |
3881 (byte-defop-compiler-1 save-excursion) | |
3882 (byte-defop-compiler-1 save-current-buffer) | |
3883 (byte-defop-compiler-1 save-restriction) | |
3884 (byte-defop-compiler-1 save-window-excursion) | |
3885 (byte-defop-compiler-1 with-output-to-temp-buffer) | |
3886 ;; no track-mouse. | |
3887 | |
3888 (defun byte-compile-catch (form) | |
3889 (byte-compile-form (car (cdr form))) | |
3890 (byte-compile-push-constant | |
3891 (byte-compile-top-level (cons 'progn (cdr (cdr form))) for-effect)) | |
3892 (byte-compile-out 'byte-catch 0)) | |
3893 | |
3894 (defun byte-compile-unwind-protect (form) | |
3895 (byte-compile-push-constant | |
3896 (byte-compile-top-level-body (cdr (cdr form)) t)) | |
3897 (byte-compile-out 'byte-unwind-protect 0) | |
3898 (byte-compile-form-do-effect (car (cdr form))) | |
3899 (byte-compile-out 'byte-unbind 1)) | |
3900 | |
3901 ;;(defun byte-compile-track-mouse (form) | |
3902 ;; (byte-compile-form | |
3903 ;; (list | |
3904 ;; 'funcall | |
3905 ;; (list 'quote | |
3906 ;; (list 'lambda nil | |
3907 ;; (cons 'track-mouse | |
3908 ;; (byte-compile-top-level-body (cdr form)))))))) | |
3909 | |
3910 (defun byte-compile-condition-case (form) | |
3911 (let* ((var (nth 1 form)) | |
3912 (byte-compile-bound-variables | |
3913 (if var | |
3914 (cons (cons var 0) | |
3915 (cons 'new-scope byte-compile-bound-variables)) | |
3916 (cons 'new-scope byte-compile-bound-variables)))) | |
3917 (or (symbolp var) | |
3918 (byte-compile-warn | |
3919 "%s is not a variable-name or nil (in condition-case)" | |
3920 (prin1-to-string var))) | |
3921 (byte-compile-push-constant var) | |
3922 (byte-compile-push-constant (byte-compile-top-level | |
3923 (nth 2 form) for-effect)) | |
3924 (let ((clauses (cdr (cdr (cdr form)))) | |
3925 compiled-clauses) | |
3926 (while clauses | |
3927 (let* ((clause (car clauses)) | |
3928 (condition (car clause))) | |
3929 (cond ((not (or (symbolp condition) | |
3930 (and (listp condition) | |
3931 (let ((syms condition) (ok t)) | |
3932 (while syms | |
3933 (if (not (symbolp (car syms))) | |
3934 (setq ok nil)) | |
3935 (setq syms (cdr syms))) | |
3936 ok)))) | |
3937 (byte-compile-warn | |
3938 "%s is not a symbol naming a condition or a list of such (in condition-case)" | |
3939 (prin1-to-string condition))) | |
3940 ;; ((not (or (eq condition 't) | |
3941 ;; (and (stringp (get condition 'error-message)) | |
3942 ;; (consp (get condition 'error-conditions))))) | |
3943 ;; (byte-compile-warn | |
3944 ;; "%s is not a known condition name (in condition-case)" | |
3945 ;; condition)) | |
3946 ) | |
3947 (setq compiled-clauses | |
3948 (cons (cons condition | |
3949 (byte-compile-top-level-body | |
3950 (cdr clause) for-effect)) | |
3951 compiled-clauses))) | |
3952 (setq clauses (cdr clauses))) | |
3953 (byte-compile-push-constant (nreverse compiled-clauses))) | |
3954 (if (memq 'unused-vars byte-compile-warnings) | |
3955 ;; done compiling in this scope, warn now. | |
3956 (byte-compile-warn-about-unused-variables)) | |
3957 (byte-compile-out 'byte-condition-case 0))) | |
3958 | |
3959 | |
3960 (defun byte-compile-save-excursion (form) | |
3961 (byte-compile-out 'byte-save-excursion 0) | |
3962 (byte-compile-body-do-effect (cdr form)) | |
3963 (byte-compile-out 'byte-unbind 1)) | |
3964 | |
3965 (defun byte-compile-save-restriction (form) | |
3966 (byte-compile-out 'byte-save-restriction 0) | |
3967 (byte-compile-body-do-effect (cdr form)) | |
3968 (byte-compile-out 'byte-unbind 1)) | |
3969 | |
3970 (defun byte-compile-save-current-buffer (form) | |
3971 (if (byte-compile-version-cond byte-compile-emacs19-compatibility) | |
3972 ;; `save-current-buffer' special form is not available in XEmacs 19. | |
3973 (byte-compile-form | |
3974 `(let ((_byte_compiler_save_buffer_emulation_closure_ (current-buffer))) | |
3975 (unwind-protect | |
3976 (progn ,@(cdr form)) | |
3977 (and (buffer-live-p _byte_compiler_save_buffer_emulation_closure_) | |
3978 (set-buffer _byte_compiler_save_buffer_emulation_closure_))))) | |
3979 (byte-compile-out 'byte-save-current-buffer 0) | |
3980 (byte-compile-body-do-effect (cdr form)) | |
3981 (byte-compile-out 'byte-unbind 1))) | |
3982 | |
3983 (defun byte-compile-save-window-excursion (form) | |
3984 (byte-compile-push-constant | |
3985 (byte-compile-top-level-body (cdr form) for-effect)) | |
3986 (byte-compile-out 'byte-save-window-excursion 0)) | |
3987 | |
3988 (defun byte-compile-with-output-to-temp-buffer (form) | |
3989 (byte-compile-form (car (cdr form))) | |
3990 (byte-compile-out 'byte-temp-output-buffer-setup 0) | |
3991 (byte-compile-body (cdr (cdr form))) | |
3992 (byte-compile-out 'byte-temp-output-buffer-show 0)) | |
3993 | |
4677
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4639
diff
changeset
|
3994 (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
|
3995 (if (< (length form) 2) |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4639
diff
changeset
|
3996 (progn |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4639
diff
changeset
|
3997 (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
|
3998 (byte-compile-normal-call |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4639
diff
changeset
|
3999 `(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
|
4000 ,(length (cdr form)))))) |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4639
diff
changeset
|
4001 (setq form (cdr form)) |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4639
diff
changeset
|
4002 (byte-compile-form (car form)) |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4639
diff
changeset
|
4003 (byte-compile-push-constant 0) |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4639
diff
changeset
|
4004 (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
|
4005 ;; 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
|
4006 ;; 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
|
4007 ;; called. |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4639
diff
changeset
|
4008 (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
|
4009 (mapcar 'byte-compile-form (cdr form)) |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4639
diff
changeset
|
4010 ;; 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
|
4011 ;; not pushing it on the stack. |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4639
diff
changeset
|
4012 (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
|
4013 (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
|
4014 (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
|
4015 byte-compile-checks-on-load |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4639
diff
changeset
|
4016 :test #'equal))) |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4639
diff
changeset
|
4017 |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4639
diff
changeset
|
4018 (defun byte-compile-multiple-value-list-internal (form) |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4639
diff
changeset
|
4019 (if (/= 4 (length form)) |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4639
diff
changeset
|
4020 (progn |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4639
diff
changeset
|
4021 (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
|
4022 (byte-compile-normal-call |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4639
diff
changeset
|
4023 `(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
|
4024 ,(length (cdr form)))))) |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4639
diff
changeset
|
4025 (byte-compile-form (nth 1 form)) |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4639
diff
changeset
|
4026 (byte-compile-form (nth 2 form)) |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4639
diff
changeset
|
4027 (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
|
4028 (byte-compile-form (nth 3 form)) |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4639
diff
changeset
|
4029 (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
|
4030 (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
|
4031 byte-compile-checks-on-load |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4639
diff
changeset
|
4032 :test #'equal))) |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4639
diff
changeset
|
4033 |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4639
diff
changeset
|
4034 (defun byte-compile-throw (form) |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4639
diff
changeset
|
4035 ;; 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
|
4036 ;; 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
|
4037 ;; 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
|
4038 ;; 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
|
4039 ;; 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
|
4040 ;; that, but this file should not assume that that will always be there). |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4639
diff
changeset
|
4041 (if (/= 2 (length (cdr form))) |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4639
diff
changeset
|
4042 (progn |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4639
diff
changeset
|
4043 (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
|
4044 (byte-compile-normal-call |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4639
diff
changeset
|
4045 `(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
|
4046 ,(length (cdr form)))))) |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4639
diff
changeset
|
4047 (byte-compile-form (nth 1 form)) ;; Push the arguments |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4639
diff
changeset
|
4048 (byte-compile-form (nth 2 form)) |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4639
diff
changeset
|
4049 (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
|
4050 (pushnew '(null (function-max-args 'throw)) |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4639
diff
changeset
|
4051 byte-compile-checks-on-load |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4639
diff
changeset
|
4052 :test #'equal))) |
428 | 4053 |
4054 ;;; top-level forms elsewhere | |
4055 | |
4056 (byte-defop-compiler-1 defun) | |
4057 (byte-defop-compiler-1 defmacro) | |
4058 (byte-defop-compiler-1 defvar) | |
442 | 4059 (byte-defop-compiler-1 defvar byte-compile-defvar-or-defconst) |
4060 (byte-defop-compiler-1 defconst byte-compile-defvar-or-defconst) | |
428 | 4061 (byte-defop-compiler-1 autoload) |
4062 ;; According to Mly this can go now that lambda is a macro | |
4063 ;(byte-defop-compiler-1 lambda byte-compile-lambda-form) | |
4064 (byte-defop-compiler-1 defalias) | |
4065 (byte-defop-compiler-1 define-function) | |
4066 | |
4067 (defun byte-compile-defun (form) | |
4068 ;; This is not used for file-level defuns with doc strings. | |
4069 (byte-compile-two-args ; Use this to avoid byte-compile-fset's warning. | |
4070 (list 'fset (list 'quote (nth 1 form)) | |
4071 (byte-compile-byte-code-maker | |
4072 (byte-compile-lambda (cons 'lambda (cdr (cdr form))))))) | |
4073 (byte-compile-discard) | |
4074 (byte-compile-constant (nth 1 form))) | |
4075 | |
4076 (defun byte-compile-defmacro (form) | |
4077 ;; This is not used for file-level defmacros with doc strings. | |
4078 (byte-compile-body-do-effect | |
4079 (list (list 'fset (list 'quote (nth 1 form)) | |
4080 (let ((code (byte-compile-byte-code-maker | |
4081 (byte-compile-lambda | |
4082 (cons 'lambda (cdr (cdr form))))))) | |
4083 (if (eq (car-safe code) 'make-byte-code) | |
4084 (list 'cons ''macro code) | |
4085 (list 'quote (cons 'macro (eval code)))))) | |
4086 (list 'quote (nth 1 form))))) | |
4087 | |
442 | 4088 (defun byte-compile-defvar-or-defconst (form) |
4089 ;; This is not used for file-level defvar/defconsts with doc strings: | |
4090 ;; byte-compile-file-form-defvar-or-defconst will be used in that case. | |
4091 ;; (defvar|defconst VAR [VALUE [DOCSTRING]]) | |
4092 (let ((fun (nth 0 form)) | |
4093 (var (nth 1 form)) | |
428 | 4094 (value (nth 2 form)) |
4095 (string (nth 3 form))) | |
442 | 4096 (when (> (length form) 4) |
4097 (byte-compile-warn | |
4098 "%s %s called with %d arguments, but accepts only %s" | |
4099 fun var (length (cdr form)) 3)) | |
4100 (when (memq 'free-vars byte-compile-warnings) | |
4101 (push (cons var byte-compile-global-bit) byte-compile-bound-variables)) | |
428 | 4102 (byte-compile-body-do-effect |
442 | 4103 (list |
4104 ;; Put the defined variable in this library's load-history entry | |
444 | 4105 ;; just as a real defvar would, but only in top-level forms with values. |
4106 (when (and (> (length form) 2) | |
4107 (null byte-compile-current-form)) | |
442 | 4108 `(push ',var current-load-list)) |
4109 (when (> (length form) 3) | |
4110 (when (and string (not (stringp string))) | |
4111 (byte-compile-warn "Third arg to %s %s is not a string: %s" | |
4112 fun var string)) | |
4113 `(put ',var 'variable-documentation ,string)) | |
4114 (if (cdr (cdr form)) ; `value' provided | |
4115 (if (eq fun 'defconst) | |
4116 ;; `defconst' sets `var' unconditionally. | |
4117 `(setq ,var ,value) | |
4118 ;; `defvar' sets `var' only when unbound. | |
1672 | 4119 `(if (not (default-boundp ',var)) (set-default ',var ,value)))) |
442 | 4120 `',var)))) |
428 | 4121 |
4122 (defun byte-compile-autoload (form) | |
4123 (and (byte-compile-constp (nth 1 form)) | |
4124 (byte-compile-constp (nth 5 form)) | |
4125 (memq (eval (nth 5 form)) '(t macro)) ; macro-p | |
4126 (not (fboundp (eval (nth 1 form)))) | |
4127 (byte-compile-warn | |
4128 "The compiler ignores `autoload' except at top level. You should | |
4129 probably put the autoload of the macro `%s' at top-level." | |
4130 (eval (nth 1 form)))) | |
4131 (byte-compile-normal-call form)) | |
4132 | |
4133 ;; Lambda's in valid places are handled as special cases by various code. | |
4134 ;; The ones that remain are errors. | |
4135 ;; According to Mly this can go now that lambda is a macro | |
4136 ;(defun byte-compile-lambda-form (form) | |
4137 ; (byte-compile-warn | |
4138 ; "`lambda' used in function position is invalid: probably you mean #'%s" | |
4139 ; (let ((print-escape-newlines t) | |
4140 ; (print-level 4) | |
4141 ; (print-length 4)) | |
4142 ; (prin1-to-string form))) | |
4143 ; (byte-compile-normal-call | |
4144 ; (list 'signal ''error | |
4145 ; (list 'quote (list "`lambda' used in function position" form))))) | |
4146 | |
4147 ;; Compile normally, but deal with warnings for the function being defined. | |
4148 (defun byte-compile-defalias (form) | |
4149 (if (and (consp (cdr form)) (consp (nth 1 form)) | |
4150 (eq (car (nth 1 form)) 'quote) | |
4151 (consp (cdr (nth 1 form))) | |
4152 (symbolp (nth 1 (nth 1 form))) | |
4153 (consp (nthcdr 2 form)) | |
4154 (consp (nth 2 form)) | |
4155 (eq (car (nth 2 form)) 'quote) | |
4156 (consp (cdr (nth 2 form))) | |
4157 (symbolp (nth 1 (nth 2 form)))) | |
4158 (progn | |
4159 (byte-compile-defalias-warn (nth 1 (nth 1 form)) | |
4160 (nth 1 (nth 2 form))) | |
4161 (setq byte-compile-function-environment | |
4162 (cons (cons (nth 1 (nth 1 form)) | |
4163 (nth 1 (nth 2 form))) | |
4164 byte-compile-function-environment)))) | |
4165 (byte-compile-normal-call form)) | |
4166 | |
4167 (defun byte-compile-define-function (form) | |
4168 (byte-compile-defalias form)) | |
4169 | |
4170 ;; Turn off warnings about prior calls to the function being defalias'd. | |
4171 ;; This could be smarter and compare those calls with | |
4172 ;; the function it is being aliased to. | |
4173 (defun byte-compile-defalias-warn (new alias) | |
4174 (let ((calls (assq new byte-compile-unresolved-functions))) | |
4175 (if calls | |
4176 (setq byte-compile-unresolved-functions | |
4177 (delq calls byte-compile-unresolved-functions))))) | |
4178 | |
4179 ;;; tags | |
4180 | |
4181 ;; Note: Most operations will strip off the 'TAG, but it speeds up | |
4182 ;; optimization to have the 'TAG as a part of the tag. | |
4183 ;; Tags will be (TAG . (tag-number . stack-depth)). | |
4184 (defun byte-compile-make-tag () | |
4185 (list 'TAG (setq byte-compile-tag-number (1+ byte-compile-tag-number)))) | |
4186 | |
4187 | |
4188 (defun byte-compile-out-tag (tag) | |
4189 (push tag byte-compile-output) | |
4190 (if (cdr (cdr tag)) | |
4191 (progn | |
4192 ;; ## remove this someday | |
4193 (and byte-compile-depth | |
4194 (not (= (cdr (cdr tag)) byte-compile-depth)) | |
4195 (error "Compiler bug: depth conflict at tag %d" (car (cdr tag)))) | |
4196 (setq byte-compile-depth (cdr (cdr tag)))) | |
4197 (setcdr (cdr tag) byte-compile-depth))) | |
4198 | |
4199 (defun byte-compile-goto (opcode tag) | |
4200 (push (cons opcode tag) byte-compile-output) | |
4201 (setcdr (cdr tag) (if (memq opcode byte-goto-always-pop-ops) | |
4202 (1- byte-compile-depth) | |
4203 byte-compile-depth)) | |
4204 (setq byte-compile-depth (and (not (eq opcode 'byte-goto)) | |
4205 (1- byte-compile-depth)))) | |
4206 | |
4207 (defun byte-compile-out (opcode offset) | |
4208 (push (cons opcode offset) byte-compile-output) | |
4209 (case opcode | |
4210 (byte-call | |
4211 (setq byte-compile-depth (- byte-compile-depth offset))) | |
4212 (byte-return | |
4213 ;; This is actually an unnecessary case, because there should be | |
4214 ;; no more opcodes behind byte-return. | |
4215 (setq byte-compile-depth nil)) | |
4677
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4639
diff
changeset
|
4216 (byte-multiple-value-call |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4639
diff
changeset
|
4217 (setq byte-compile-depth (- byte-compile-depth offset))) |
428 | 4218 (t |
4219 (setq byte-compile-depth (+ byte-compile-depth | |
4220 (or (aref byte-stack+-info | |
4221 (symbol-value opcode)) | |
4222 (- (1- offset)))) | |
4223 byte-compile-maxdepth (max byte-compile-depth | |
4224 byte-compile-maxdepth)))) | |
4225 ;;(if (< byte-compile-depth 0) (error "Compiler error: stack underflow")) | |
4226 ) | |
4227 | |
4228 | |
4229 ;;; call tree stuff | |
4230 | |
4231 (defun byte-compile-annotate-call-tree (form) | |
4232 (let (entry) | |
4233 ;; annotate the current call | |
4234 (if (setq entry (assq (car form) byte-compile-call-tree)) | |
4235 (or (memq byte-compile-current-form (nth 1 entry)) ;callers | |
4236 (setcar (cdr entry) | |
4237 (cons byte-compile-current-form (nth 1 entry)))) | |
4238 (push (list (car form) (list byte-compile-current-form) nil) | |
4239 byte-compile-call-tree)) | |
4240 ;; annotate the current function | |
4241 (if (setq entry (assq byte-compile-current-form byte-compile-call-tree)) | |
4242 (or (memq (car form) (nth 2 entry)) ;called | |
4243 (setcar (cdr (cdr entry)) | |
4244 (cons (car form) (nth 2 entry)))) | |
4245 (push (list byte-compile-current-form nil (list (car form))) | |
4246 byte-compile-call-tree)))) | |
4247 | |
4248 ;; Renamed from byte-compile-report-call-tree | |
4249 ;; to avoid interfering with completion of byte-compile-file. | |
4250 ;;;###autoload | |
4251 (defun display-call-tree (&optional filename) | |
4252 "Display a call graph of a specified file. | |
4253 This lists which functions have been called, what functions called | |
4254 them, and what functions they call. The list includes all functions | |
4255 whose definitions have been compiled in this Emacs session, as well as | |
4256 all functions called by those functions. | |
4257 | |
4258 The call graph does not include macros, inline functions, or | |
4259 primitives that the byte-code interpreter knows about directly \(eq, | |
4260 cons, etc.\). | |
4261 | |
4262 The call tree also lists those functions which are not known to be called | |
4263 \(that is, to which no calls have been compiled\), and which cannot be | |
4264 invoked interactively." | |
4265 (interactive) | |
4266 (message "Generating call tree...") | |
4267 (with-output-to-temp-buffer "*Call-Tree*" | |
4268 (set-buffer "*Call-Tree*") | |
4269 (erase-buffer) | |
4270 (message "Generating call tree... (sorting on %s)" | |
4271 byte-compile-call-tree-sort) | |
4272 (insert "Call tree for " | |
4273 (cond ((null byte-compile-current-file) (or filename "???")) | |
4274 ((stringp byte-compile-current-file) | |
4275 byte-compile-current-file) | |
4276 (t (buffer-name byte-compile-current-file))) | |
4277 " sorted on " | |
4278 (prin1-to-string byte-compile-call-tree-sort) | |
4279 ":\n\n") | |
4280 (if byte-compile-call-tree-sort | |
4281 (setq byte-compile-call-tree | |
4282 (sort byte-compile-call-tree | |
4283 (cond | |
4284 ((eq byte-compile-call-tree-sort 'callers) | |
4285 #'(lambda (x y) (< (length (nth 1 x)) | |
4286 (length (nth 1 y))))) | |
4287 ((eq byte-compile-call-tree-sort 'calls) | |
4288 #'(lambda (x y) (< (length (nth 2 x)) | |
4289 (length (nth 2 y))))) | |
4290 ((eq byte-compile-call-tree-sort 'calls+callers) | |
4291 #'(lambda (x y) (< (+ (length (nth 1 x)) | |
4292 (length (nth 2 x))) | |
4293 (+ (length (nth 1 y)) | |
4294 (length (nth 2 y)))))) | |
4295 ((eq byte-compile-call-tree-sort 'name) | |
4296 #'(lambda (x y) (string< (car x) | |
4297 (car y)))) | |
4298 (t (error | |
4299 "`byte-compile-call-tree-sort': `%s' - unknown sort mode" | |
4300 byte-compile-call-tree-sort)))))) | |
4301 (message "Generating call tree...") | |
4302 (let ((rest byte-compile-call-tree) | |
4303 (b (current-buffer)) | |
4304 f p | |
4305 callers calls) | |
4306 (while rest | |
4307 (prin1 (car (car rest)) b) | |
4308 (setq callers (nth 1 (car rest)) | |
4309 calls (nth 2 (car rest))) | |
4310 (insert "\t" | |
4311 (cond ((not (fboundp (setq f (car (car rest))))) | |
4312 (if (null f) | |
4313 " <top level>";; shouldn't insert nil then, actually -sk | |
4314 " <not defined>")) | |
4315 ((subrp (setq f (symbol-function f))) | |
4316 " <subr>") | |
4317 ((symbolp f) | |
4318 (format " ==> %s" f)) | |
4319 ((compiled-function-p f) | |
4320 "<compiled function>") | |
4321 ((not (consp f)) | |
4322 "<malformed function>") | |
4323 ((eq 'macro (car f)) | |
4324 (if (or (compiled-function-p (cdr f)) | |
4325 (assq 'byte-code (cdr (cdr (cdr f))))) | |
4326 " <compiled macro>" | |
4327 " <macro>")) | |
4328 ((assq 'byte-code (cdr (cdr f))) | |
4329 "<compiled lambda>") | |
4330 ((eq 'lambda (car f)) | |
4331 "<function>") | |
4332 (t "???")) | |
4333 (format " (%d callers + %d calls = %d)" | |
4334 ;; Does the optimizer eliminate common subexpressions?-sk | |
4335 (length callers) | |
4336 (length calls) | |
4337 (+ (length callers) (length calls))) | |
4338 "\n") | |
4339 (if callers | |
4340 (progn | |
4341 (insert " called by:\n") | |
4342 (setq p (point)) | |
4343 (insert " " (if (car callers) | |
4344 (mapconcat 'symbol-name callers ", ") | |
4345 "<top level>")) | |
4346 (let ((fill-prefix " ")) | |
4347 (fill-region-as-paragraph p (point))))) | |
4348 (if calls | |
4349 (progn | |
4350 (insert " calls:\n") | |
4351 (setq p (point)) | |
4352 (insert " " (mapconcat 'symbol-name calls ", ")) | |
4353 (let ((fill-prefix " ")) | |
4354 (fill-region-as-paragraph p (point))))) | |
4355 (insert "\n") | |
4356 (setq rest (cdr rest))) | |
4357 | |
4358 (message "Generating call tree...(finding uncalled functions...)") | |
4359 (setq rest byte-compile-call-tree) | |
4360 (let ((uncalled nil)) | |
4361 (while rest | |
4362 (or (nth 1 (car rest)) | |
4363 (null (setq f (car (car rest)))) | |
4364 (byte-compile-fdefinition f t) | |
4365 (commandp (byte-compile-fdefinition f nil)) | |
4366 (setq uncalled (cons f uncalled))) | |
4367 (setq rest (cdr rest))) | |
4368 (if uncalled | |
4369 (let ((fill-prefix " ")) | |
4370 (insert "Noninteractive functions not known to be called:\n ") | |
4371 (setq p (point)) | |
4372 (insert (mapconcat 'symbol-name (nreverse uncalled) ", ")) | |
4373 (fill-region-as-paragraph p (point))))) | |
4374 ) | |
4375 (message "Generating call tree...done.") | |
4376 )) | |
4377 | |
4378 | |
4379 ;;; by crl@newton.purdue.edu | |
4380 ;;; Only works noninteractively. | |
4381 ;;;###autoload | |
4382 (defun batch-byte-compile () | |
4383 "Run `byte-compile-file' on the files remaining on the command line. | |
4384 Use this from the command line, with `-batch'; | |
4385 it won't work in an interactive Emacs. | |
4386 Each file is processed even if an error occurred previously. | |
444 | 4387 For example, invoke \"xemacs -batch -f batch-byte-compile $emacs/ ~/*.el\"." |
428 | 4388 ;; command-line-args-left is what is left of the command line (from |
4389 ;; startup.el) | |
4390 (defvar command-line-args-left) ;Avoid 'free variable' warning | |
4391 (if (not noninteractive) | |
4392 (error "`batch-byte-compile' is to be used only with -batch")) | |
4393 (let ((error nil)) | |
4394 (while command-line-args-left | |
442 | 4395 (if (null (batch-byte-compile-one-file)) |
4396 (setq error t))) | |
428 | 4397 (message "Done") |
4398 (kill-emacs (if error 1 0)))) | |
4399 | |
442 | 4400 ;;;###autoload |
4401 (defun batch-byte-compile-one-file () | |
4402 "Run `byte-compile-file' on a single file remaining on the command line. | |
4403 Use this from the command line, with `-batch'; | |
4404 it won't work in an interactive Emacs." | |
4405 ;; command-line-args-left is what is left of the command line (from | |
4406 ;; startup.el) | |
4407 (defvar command-line-args-left) ;Avoid 'free variable' warning | |
4408 (if (not noninteractive) | |
4409 (error "`batch-byte-compile-one-file' is to be used only with -batch")) | |
4410 (let (error | |
4411 (file-to-process (car command-line-args-left))) | |
4412 (setq command-line-args-left (cdr command-line-args-left)) | |
4413 (if (file-directory-p (expand-file-name file-to-process)) | |
4414 (let ((files (directory-files file-to-process)) | |
4415 source dest) | |
4416 (while files | |
4417 (if (and (string-match emacs-lisp-file-regexp (car files)) | |
4418 (not (auto-save-file-name-p (car files))) | |
4419 (setq source (expand-file-name | |
4420 (car files) | |
4421 file-to-process)) | |
4422 (setq dest (byte-compile-dest-file source)) | |
4423 (file-exists-p dest) | |
4424 (file-newer-than-file-p source dest)) | |
4425 (if (null (batch-byte-compile-1 source)) | |
4426 (setq error t))) | |
4427 (setq files (cdr files))) | |
4428 (null error)) | |
4429 (batch-byte-compile-1 file-to-process)))) | |
4430 | |
428 | 4431 (defun batch-byte-compile-1 (file) |
4432 (condition-case err | |
4433 (progn (byte-compile-file file) t) | |
4434 (error | |
4435 (princ ">>Error occurred processing ") | |
4436 (princ file) | |
4437 (princ ": ") | |
4438 (if (fboundp 'display-error) ; XEmacs 19.8+ | |
4439 (display-error err nil) | |
4440 (princ (or (get (car err) 'error-message) (car err))) | |
4441 (mapcar #'(lambda (x) (princ " ") (prin1 x)) (cdr err))) | |
4442 (princ "\n") | |
4443 nil))) | |
4444 | |
4445 ;;;###autoload | |
4446 (defun batch-byte-recompile-directory-norecurse () | |
4447 "Same as `batch-byte-recompile-directory' but without recursion." | |
4448 (setq byte-recompile-directory-recursively nil) | |
4449 (batch-byte-recompile-directory)) | |
4450 | |
4451 ;;;###autoload | |
4452 (defun batch-byte-recompile-directory () | |
4453 "Runs `byte-recompile-directory' on the dirs remaining on the command line. | |
4454 Must be used only with `-batch', and kills Emacs on completion. | |
4455 For example, invoke `xemacs -batch -f batch-byte-recompile-directory .'." | |
4456 ;; command-line-args-left is what is left of the command line (startup.el) | |
4457 (defvar command-line-args-left) ;Avoid 'free variable' warning | |
4458 (if (not noninteractive) | |
4459 (error "batch-byte-recompile-directory is to be used only with -batch")) | |
4460 (or command-line-args-left | |
4461 (setq command-line-args-left '("."))) | |
4462 (let ((byte-recompile-directory-ignore-errors-p t)) | |
4463 (while command-line-args-left | |
4464 (byte-recompile-directory (car command-line-args-left)) | |
4465 (setq command-line-args-left (cdr command-line-args-left)))) | |
4466 (kill-emacs 0)) | |
4467 | |
4468 (make-obsolete 'elisp-compile-defun 'compile-defun) | |
4469 (make-obsolete 'byte-compile-report-call-tree 'display-call-tree) | |
4470 | |
4471 ;; other make-obsolete calls in obsolete.el. | |
4472 | |
4473 (provide 'byte-compile) | |
4474 (provide 'bytecomp) | |
4475 | |
4476 | |
4477 ;;; report metering (see the hacks in bytecode.c) | |
4478 | |
4479 (if (boundp 'byte-code-meter) | |
4480 (defun byte-compile-report-ops () | |
4481 (defvar byte-code-meter) | |
4482 (with-output-to-temp-buffer "*Meter*" | |
4483 (set-buffer "*Meter*") | |
4484 (let ((i 0) n op off) | |
4485 (while (< i 256) | |
4486 (setq n (aref (aref byte-code-meter 0) i) | |
4487 off nil) | |
4488 (if t ;(not (zerop n)) | |
4489 (progn | |
4490 (setq op i) | |
4491 (setq off nil) | |
4492 (cond ((< op byte-nth) | |
4493 (setq off (logand op 7)) | |
4494 (setq op (logand op 248))) | |
4495 ((>= op byte-constant) | |
4496 (setq off (- op byte-constant) | |
4497 op byte-constant))) | |
4498 (setq op (aref byte-code-vector op)) | |
4499 (insert (format "%-4d" i)) | |
4500 (insert (symbol-name op)) | |
4501 (if off (insert " [" (int-to-string off) "]")) | |
4502 (indent-to 40) | |
4503 (insert (int-to-string n) "\n"))) | |
4504 (setq i (1+ i))))))) | |
4505 | |
4506 | |
4507 ;; To avoid "lisp nesting exceeds max-lisp-eval-depth" when bytecomp compiles | |
4508 ;; itself, compile some of its most used recursive functions (at load time). | |
4509 ;; | |
4510 (eval-when-compile | |
4511 (or (compiled-function-p (symbol-function 'byte-compile-form)) | |
4512 (assq 'byte-code (symbol-function 'byte-compile-form)) | |
4513 (let ((byte-optimize nil) ; do it fast | |
4514 (byte-compile-warnings nil)) | |
4515 (mapcar #'(lambda (x) | |
4516 (or noninteractive (message "compiling %s..." x)) | |
4517 (byte-compile x) | |
4518 (or noninteractive (message "compiling %s...done" x))) | |
4519 '(byte-compile-normal-call | |
4520 byte-compile-form | |
4521 byte-compile-body | |
4522 ;; Inserted some more than necessary, to speed it up. | |
4523 byte-compile-top-level | |
4524 byte-compile-out-toplevel | |
4525 byte-compile-constant | |
4526 byte-compile-variable-ref)))) | |
4527 nil) | |
4528 | |
4529 ;;; bytecomp.el ends here |