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