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