; Add further traces to tramp-tests.el
[emacs.git] / lisp / emacs-lisp / bytecomp.el
blobfdd4276e4e7a5a5e64e715e02e4211fcbabe5608
1 ;;; bytecomp.el --- compilation of Lisp code into byte code -*- lexical-binding: t -*-
3 ;; Copyright (C) 1985-1987, 1992, 1994, 1998, 2000-2017 Free Software
4 ;; Foundation, Inc.
6 ;; Author: Jamie Zawinski <jwz@lucid.com>
7 ;; Hallvard Furuseth <hbf@ulrik.uio.no>
8 ;; Maintainer: emacs-devel@gnu.org
9 ;; Keywords: lisp
10 ;; Package: emacs
12 ;; This file is part of GNU Emacs.
14 ;; GNU Emacs is free software: you can redistribute it and/or modify
15 ;; it under the terms of the GNU General Public License as published by
16 ;; the Free Software Foundation, either version 3 of the License, or
17 ;; (at your option) any later version.
19 ;; GNU Emacs is distributed in the hope that it will be useful,
20 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
21 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
22 ;; GNU General Public License for more details.
24 ;; You should have received a copy of the GNU General Public License
25 ;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
27 ;;; Commentary:
29 ;; The Emacs Lisp byte compiler. This crunches lisp source into a sort
30 ;; of p-code (`lapcode') which takes up less space and can be interpreted
31 ;; faster. [`LAP' == `Lisp Assembly Program'.]
32 ;; The user entry points are byte-compile-file and byte-recompile-directory.
34 ;;; Todo:
36 ;; - Turn "not bound at runtime" functions into autoloads.
38 ;;; Code:
40 ;; ========================================================================
41 ;; Entry points:
42 ;; byte-recompile-directory, byte-compile-file,
43 ;; byte-recompile-file,
44 ;; batch-byte-compile, batch-byte-recompile-directory,
45 ;; byte-compile, compile-defun,
46 ;; display-call-tree
47 ;; (byte-compile-buffer and byte-compile-and-load-file were turned off
48 ;; because they are not terribly useful and get in the way of completion.)
50 ;; This version of the byte compiler has the following improvements:
51 ;; + optimization of compiled code:
52 ;; - removal of unreachable code;
53 ;; - removal of calls to side-effectless functions whose return-value
54 ;; is unused;
55 ;; - compile-time evaluation of safe constant forms, such as (consp nil)
56 ;; and (ash 1 6);
57 ;; - open-coding of literal lambdas;
58 ;; - peephole optimization of emitted code;
59 ;; - trivial functions are left uncompiled for speed.
60 ;; + support for inline functions;
61 ;; + compile-time evaluation of arbitrary expressions;
62 ;; + compile-time warning messages for:
63 ;; - functions being redefined with incompatible arglists;
64 ;; - functions being redefined as macros, or vice-versa;
65 ;; - functions or macros defined multiple times in the same file;
66 ;; - functions being called with the incorrect number of arguments;
67 ;; - functions being called which are not defined globally, in the
68 ;; file, or as autoloads;
69 ;; - assignment and reference of undeclared free variables;
70 ;; - various syntax errors;
71 ;; + correct compilation of nested defuns, defmacros, defvars and defsubsts;
72 ;; + correct compilation of top-level uses of macros;
73 ;; + the ability to generate a histogram of functions called.
75 ;; User customization variables: M-x customize-group bytecomp
77 ;; New Features:
79 ;; o The form `defsubst' is just like `defun', except that the function
80 ;; generated will be open-coded in compiled code which uses it. This
81 ;; means that no function call will be generated, it will simply be
82 ;; spliced in. Lisp functions calls are very slow, so this can be a
83 ;; big win.
85 ;; You can generally accomplish the same thing with `defmacro', but in
86 ;; that case, the defined procedure can't be used as an argument to
87 ;; mapcar, etc.
89 ;; o You can also open-code one particular call to a function without
90 ;; open-coding all calls. Use the 'inline' form to do this, like so:
92 ;; (inline (foo 1 2 3)) ;; `foo' will be open-coded
93 ;; or...
94 ;; (inline ;; `foo' and `baz' will be
95 ;; (foo 1 2 3 (bar 5)) ;; open-coded, but `bar' will not.
96 ;; (baz 0))
98 ;; o It is possible to open-code a function in the same file it is defined
99 ;; in without having to load that file before compiling it. The
100 ;; byte-compiler has been modified to remember function definitions in
101 ;; the compilation environment in the same way that it remembers macro
102 ;; definitions.
104 ;; o Forms like ((lambda ...) ...) are open-coded.
106 ;; o The form `eval-when-compile' is like progn, except that the body
107 ;; is evaluated at compile-time. When it appears at top-level, this
108 ;; is analogous to the Common Lisp idiom (eval-when (compile) ...).
109 ;; When it does not appear at top-level, it is similar to the
110 ;; Common Lisp #. reader macro (but not in interpreted code).
112 ;; o The form `eval-and-compile' is similar to eval-when-compile, but
113 ;; the whole form is evalled both at compile-time and at run-time.
115 ;; o The command compile-defun is analogous to eval-defun.
117 ;; o If you run byte-compile-file on a filename which is visited in a
118 ;; buffer, and that buffer is modified, you are asked whether you want
119 ;; to save the buffer before compiling.
121 ;; o byte-compiled files now start with the string `;ELC'.
122 ;; Some versions of `file' can be customized to recognize that.
124 (require 'backquote)
125 (require 'macroexp)
126 (require 'cconv)
127 (require 'cl-lib)
129 ;; During bootstrap, cl-loaddefs.el is not created yet, so loading cl-lib
130 ;; doesn't setup autoloads for things like cl-every, which is why we have to
131 ;; require cl-extra as well (bug#18804).
132 (or (fboundp 'cl-every)
133 (require 'cl-extra))
135 (or (fboundp 'defsubst)
136 ;; This really ought to be loaded already!
137 (load "byte-run"))
139 ;; The feature of compiling in a specific target Emacs version
140 ;; has been turned off because compile time options are a bad idea.
141 (defgroup bytecomp nil
142 "Emacs Lisp byte-compiler."
143 :group 'lisp)
145 (defcustom emacs-lisp-file-regexp "\\.el\\'"
146 "Regexp which matches Emacs Lisp source files.
147 If you change this, you might want to set `byte-compile-dest-file-function'."
148 :group 'bytecomp
149 :type 'regexp)
151 (defcustom byte-compile-dest-file-function nil
152 "Function for the function `byte-compile-dest-file' to call.
153 It should take one argument, the name of an Emacs Lisp source
154 file name, and return the name of the compiled file."
155 :group 'bytecomp
156 :type '(choice (const nil) function)
157 :version "23.2")
159 ;; This enables file name handlers such as jka-compr
160 ;; to remove parts of the file name that should not be copied
161 ;; through to the output file name.
162 (defun byte-compiler-base-file-name (filename)
163 (let ((handler (find-file-name-handler filename
164 'byte-compiler-base-file-name)))
165 (if handler
166 (funcall handler 'byte-compiler-base-file-name filename)
167 filename)))
169 (defun byte-compile-dest-file (filename)
170 "Convert an Emacs Lisp source file name to a compiled file name.
171 If `byte-compile-dest-file-function' is non-nil, uses that
172 function to do the work. Otherwise, if FILENAME matches
173 `emacs-lisp-file-regexp' (by default, files with the extension `.el'),
174 adds `c' to it; otherwise adds `.elc'."
175 (if byte-compile-dest-file-function
176 (funcall byte-compile-dest-file-function filename)
177 (setq filename (file-name-sans-versions
178 (byte-compiler-base-file-name filename)))
179 (cond ((string-match emacs-lisp-file-regexp filename)
180 (concat (substring filename 0 (match-beginning 0)) ".elc"))
181 (t (concat filename ".elc")))))
183 ;; This can be the 'byte-compile property of any symbol.
184 (autoload 'byte-compile-inline-expand "byte-opt")
186 ;; This is the entry point to the lapcode optimizer pass1.
187 (autoload 'byte-optimize-form "byte-opt")
188 ;; This is the entry point to the lapcode optimizer pass2.
189 (autoload 'byte-optimize-lapcode "byte-opt")
190 (autoload 'byte-compile-unfold-lambda "byte-opt")
192 ;; This is the entry point to the decompiler, which is used by the
193 ;; disassembler. The disassembler just requires 'byte-compile, but
194 ;; that doesn't define this function, so this seems to be a reasonable
195 ;; thing to do.
196 (autoload 'byte-decompile-bytecode "byte-opt")
198 (defcustom byte-compile-verbose
199 (and (not noninteractive) (> baud-rate search-slow-speed))
200 "Non-nil means print messages describing progress of byte-compiler."
201 :group 'bytecomp
202 :type 'boolean)
204 (defcustom byte-optimize t
205 "Enable optimization in the byte compiler.
206 Possible values are:
207 nil - no optimization
208 t - all optimizations
209 `source' - source-level optimizations only
210 `byte' - code-level optimizations only"
211 :group 'bytecomp
212 :type '(choice (const :tag "none" nil)
213 (const :tag "all" t)
214 (const :tag "source-level" source)
215 (const :tag "byte-level" byte)))
217 (defcustom byte-compile-delete-errors nil
218 "If non-nil, the optimizer may delete forms that may signal an error.
219 This includes variable references and calls to functions such as `car'."
220 :group 'bytecomp
221 :type 'boolean)
223 (defcustom byte-compile-cond-use-jump-table t
224 "Compile `cond' clauses to a jump table implementation (using a hash-table)."
225 :group 'bytecomp
226 :type 'boolean)
228 (defvar byte-compile-dynamic nil
229 "If non-nil, compile function bodies so they load lazily.
230 They are hidden in comments in the compiled file,
231 and each one is brought into core when the
232 function is called.
234 To enable this option, make it a file-local variable
235 in the source file you want it to apply to.
236 For example, add -*-byte-compile-dynamic: t;-*- on the first line.
238 When this option is true, if you load the compiled file and then move it,
239 the functions you loaded will not be able to run.")
240 ;;;###autoload(put 'byte-compile-dynamic 'safe-local-variable 'booleanp)
242 (defvar byte-compile-disable-print-circle nil
243 "If non-nil, disable `print-circle' on printing a byte-compiled code.")
244 (make-obsolete-variable 'byte-compile-disable-print-circle nil "24.1")
245 ;;;###autoload(put 'byte-compile-disable-print-circle 'safe-local-variable 'booleanp)
247 (defcustom byte-compile-dynamic-docstrings t
248 "If non-nil, compile doc strings for lazy access.
249 We bury the doc strings of functions and variables inside comments in
250 the file, and bring them into core only when they are actually needed.
252 When this option is true, if you load the compiled file and then move it,
253 you won't be able to find the documentation of anything in that file.
255 To disable this option for a certain file, make it a file-local variable
256 in the source file. For example, add this to the first line:
257 -*-byte-compile-dynamic-docstrings:nil;-*-
258 You can also set the variable globally.
260 This option is enabled by default because it reduces Emacs memory usage."
261 :group 'bytecomp
262 :type 'boolean)
263 ;;;###autoload(put 'byte-compile-dynamic-docstrings 'safe-local-variable 'booleanp)
265 (defconst byte-compile-log-buffer "*Compile-Log*"
266 "Name of the byte-compiler's log buffer.")
268 (defcustom byte-optimize-log nil
269 "If non-nil, the byte-compiler will log its optimizations.
270 If this is `source', then only source-level optimizations will be logged.
271 If it is `byte', then only byte-level optimizations will be logged.
272 The information is logged to `byte-compile-log-buffer'."
273 :group 'bytecomp
274 :type '(choice (const :tag "none" nil)
275 (const :tag "all" t)
276 (const :tag "source-level" source)
277 (const :tag "byte-level" byte)))
279 (defcustom byte-compile-error-on-warn nil
280 "If true, the byte-compiler reports warnings with `error'."
281 :group 'bytecomp
282 :type 'boolean)
284 (defconst byte-compile-warning-types
285 '(redefine callargs free-vars unresolved
286 obsolete noruntime cl-functions interactive-only
287 make-local mapcar constants suspicious lexical)
288 "The list of warning types used when `byte-compile-warnings' is t.")
289 (defcustom byte-compile-warnings t
290 "List of warnings that the byte-compiler should issue (t for all).
292 Elements of the list may be:
294 free-vars references to variables not in the current lexical scope.
295 unresolved calls to unknown functions.
296 callargs function calls with args that don't match the definition.
297 redefine function name redefined from a macro to ordinary function or vice
298 versa, or redefined to take a different number of arguments.
299 obsolete obsolete variables and functions.
300 noruntime functions that may not be defined at runtime (typically
301 defined only under `eval-when-compile').
302 cl-functions calls to runtime functions (as distinguished from macros and
303 aliases) from the old CL package (not the newer cl-lib).
304 interactive-only
305 commands that normally shouldn't be called from Lisp code.
306 lexical global/dynamic variables lacking a prefix.
307 make-local calls to make-variable-buffer-local that may be incorrect.
308 mapcar mapcar called for effect.
309 constants let-binding of, or assignment to, constants/nonvariables.
310 suspicious constructs that usually don't do what the coder wanted.
312 If the list begins with `not', then the remaining elements specify warnings to
313 suppress. For example, (not mapcar) will suppress warnings about mapcar."
314 :group 'bytecomp
315 :type `(choice (const :tag "All" t)
316 (set :menu-tag "Some"
317 ,@(mapcar (lambda (x) `(const ,x))
318 byte-compile-warning-types))))
320 ;;;###autoload
321 (put 'byte-compile-warnings 'safe-local-variable
322 (lambda (v)
323 (or (symbolp v)
324 (null (delq nil (mapcar (lambda (x) (not (symbolp x))) v))))))
326 (defun byte-compile-warning-enabled-p (warning)
327 "Return non-nil if WARNING is enabled, according to `byte-compile-warnings'."
328 (or (eq byte-compile-warnings t)
329 (if (eq (car byte-compile-warnings) 'not)
330 (not (memq warning byte-compile-warnings))
331 (memq warning byte-compile-warnings))))
333 ;;;###autoload
334 (defun byte-compile-disable-warning (warning)
335 "Change `byte-compile-warnings' to disable WARNING.
336 If `byte-compile-warnings' is t, set it to `(not WARNING)'.
337 Otherwise, if the first element is `not', add WARNING, else remove it.
338 Normally you should let-bind `byte-compile-warnings' before calling this,
339 else the global value will be modified."
340 (setq byte-compile-warnings
341 (cond ((eq byte-compile-warnings t)
342 (list 'not warning))
343 ((eq (car byte-compile-warnings) 'not)
344 (if (memq warning byte-compile-warnings)
345 byte-compile-warnings
346 (append byte-compile-warnings (list warning))))
348 (delq warning byte-compile-warnings)))))
350 ;;;###autoload
351 (defun byte-compile-enable-warning (warning)
352 "Change `byte-compile-warnings' to enable WARNING.
353 If `byte-compile-warnings' is t, do nothing. Otherwise, if the
354 first element is `not', remove WARNING, else add it.
355 Normally you should let-bind `byte-compile-warnings' before calling this,
356 else the global value will be modified."
357 (or (eq byte-compile-warnings t)
358 (setq byte-compile-warnings
359 (cond ((eq (car byte-compile-warnings) 'not)
360 (delq warning byte-compile-warnings))
361 ((memq warning byte-compile-warnings)
362 byte-compile-warnings)
364 (append byte-compile-warnings (list warning)))))))
366 (defvar byte-compile-interactive-only-functions nil
367 "List of commands that are not meant to be called from Lisp.")
368 (make-obsolete-variable 'byte-compile-interactive-only-functions
369 "use the `interactive-only' symbol property instead."
370 "24.4")
372 (defvar byte-compile-not-obsolete-vars nil
373 "List of variables that shouldn't be reported as obsolete.")
374 (defvar byte-compile-global-not-obsolete-vars nil
375 "Global list of variables that shouldn't be reported as obsolete.")
377 (defvar byte-compile-not-obsolete-funcs nil
378 "List of functions that shouldn't be reported as obsolete.")
380 (defcustom byte-compile-generate-call-tree nil
381 "Non-nil means collect call-graph information when compiling.
382 This records which functions were called and from where.
383 If the value is t, compilation displays the call graph when it finishes.
384 If the value is neither t nor nil, compilation asks you whether to display
385 the graph.
387 The call tree only lists functions called, not macros used. Those functions
388 which the byte-code interpreter knows about directly (eq, cons, etc.) are
389 not reported.
391 The call tree also lists those functions which are not known to be called
392 \(that is, to which no calls have been compiled). Functions which can be
393 invoked interactively are excluded from this list."
394 :group 'bytecomp
395 :type '(choice (const :tag "Yes" t) (const :tag "No" nil)
396 (other :tag "Ask" lambda)))
398 (defvar byte-compile-call-tree nil
399 "Alist of functions and their call tree.
400 Each element looks like
402 (FUNCTION CALLERS CALLS)
404 where CALLERS is a list of functions that call FUNCTION, and CALLS
405 is a list of functions for which calls were generated while compiling
406 FUNCTION.")
408 (defcustom byte-compile-call-tree-sort 'name
409 "If non-nil, sort the call tree.
410 The values `name', `callers', `calls', `calls+callers'
411 specify different fields to sort on."
412 :group 'bytecomp
413 :type '(choice (const name) (const callers) (const calls)
414 (const calls+callers) (const nil)))
416 (defvar byte-compile-debug nil
417 "If non-nil, byte compile errors will be raised as signals instead of logged.")
418 (defvar byte-compile-jump-tables nil
419 "List of all jump tables used during compilation of this form.")
420 (defvar byte-compile-constants nil
421 "List of all constants encountered during compilation of this form.")
422 (defvar byte-compile-variables nil
423 "List of all variables encountered during compilation of this form.")
424 (defvar byte-compile-bound-variables nil
425 "List of dynamic variables bound in the context of the current form.
426 This list lives partly on the stack.")
427 (defvar byte-compile-lexical-variables nil
428 "List of variables that have been treated as lexical.
429 Filled in `cconv-analyze-form' but initialized and consulted here.")
430 (defvar byte-compile-const-variables nil
431 "List of variables declared as constants during compilation of this file.")
432 (defvar byte-compile-free-references)
433 (defvar byte-compile-free-assignments)
435 (defvar byte-compiler-error-flag)
437 (defun byte-compile-recurse-toplevel (form non-toplevel-case)
438 "Implement `eval-when-compile' and `eval-and-compile'.
439 Return the compile-time value of FORM."
440 ;; Macroexpand (not macroexpand-all!) form at toplevel in case it
441 ;; expands into a toplevel-equivalent `progn'. See CLHS section
442 ;; 3.2.3.1, "Processing of Top Level Forms". The semantics are very
443 ;; subtle: see test/lisp/emacs-lisp/bytecomp-tests.el for interesting
444 ;; cases.
445 (setf form (macroexp-macroexpand form byte-compile-macro-environment))
446 (if (eq (car-safe form) 'progn)
447 (cons 'progn
448 (mapcar (lambda (subform)
449 (byte-compile-recurse-toplevel
450 subform non-toplevel-case))
451 (cdr form)))
452 (funcall non-toplevel-case form)))
454 (defconst byte-compile-initial-macro-environment
456 ;; (byte-compiler-options . (lambda (&rest forms)
457 ;; (apply 'byte-compiler-options-handler forms)))
458 (declare-function . byte-compile-macroexpand-declare-function)
459 (eval-when-compile . ,(lambda (&rest body)
460 (let ((result nil))
461 (byte-compile-recurse-toplevel
462 (macroexp-progn body)
463 (lambda (form)
464 ;; Insulate the following variables
465 ;; against changes made in the
466 ;; subsidiary compilation. This
467 ;; prevents spurious warning
468 ;; messages: "not defined at runtime"
469 ;; etc.
470 (let ((byte-compile-unresolved-functions
471 byte-compile-unresolved-functions)
472 (byte-compile-new-defuns
473 byte-compile-new-defuns))
474 (setf result
475 (byte-compile-eval
476 (byte-compile-top-level
477 (byte-compile-preprocess form)))))))
478 (list 'quote result))))
479 (eval-and-compile . ,(lambda (&rest body)
480 (byte-compile-recurse-toplevel
481 (macroexp-progn body)
482 (lambda (form)
483 ;; Don't compile here, since we don't know
484 ;; whether to compile as byte-compile-form
485 ;; or byte-compile-file-form.
486 (let ((expanded
487 (macroexpand-all
488 form
489 macroexpand-all-environment)))
490 (eval expanded lexical-binding)
491 expanded))))))
492 "The default macro-environment passed to macroexpand by the compiler.
493 Placing a macro here will cause a macro to have different semantics when
494 expanded by the compiler as when expanded by the interpreter.")
496 (defvar byte-compile-macro-environment byte-compile-initial-macro-environment
497 "Alist of macros defined in the file being compiled.
498 Each element looks like (MACRONAME . DEFINITION). It is
499 \(MACRONAME . nil) when a macro is redefined as a function.")
501 (defvar byte-compile-function-environment nil
502 "Alist of functions defined in the file being compiled.
503 This is so we can inline them when necessary.
504 Each element looks like (FUNCTIONNAME . DEFINITION). It is
505 \(FUNCTIONNAME . nil) when a function is redefined as a macro.
506 It is \(FUNCTIONNAME . t) when all we know is that it was defined,
507 and we don't know the definition. For an autoloaded function, DEFINITION
508 has the form (autoload . FILENAME).")
510 (defvar byte-compile-unresolved-functions nil
511 "Alist of undefined functions to which calls have been compiled.
512 This variable is only significant whilst compiling an entire buffer.
513 Used for warnings when a function is not known to be defined or is later
514 defined with incorrect args.")
516 (defvar byte-compile-noruntime-functions nil
517 "Alist of functions called that may not be defined when the compiled code is run.
518 Used for warnings about calling a function that is defined during compilation
519 but won't necessarily be defined when the compiled file is loaded.")
521 (defvar byte-compile-new-defuns nil
522 "List of (runtime) functions defined in this compilation run.
523 This variable is used to qualify `byte-compile-noruntime-functions' when
524 outputting warnings about functions not being defined at runtime.")
526 ;; Variables for lexical binding
527 (defvar byte-compile--lexical-environment nil
528 "The current lexical environment.")
530 (defvar byte-compile-tag-number 0)
531 (defvar byte-compile-output nil
532 "Alist describing contents to put in byte code string.
533 Each element is (INDEX . VALUE)")
534 (defvar byte-compile-depth 0 "Current depth of execution stack.")
535 (defvar byte-compile-maxdepth 0 "Maximum depth of execution stack.")
538 ;;; The byte codes; this information is duplicated in bytecomp.c
540 (defvar byte-code-vector nil
541 "An array containing byte-code names indexed by byte-code values.")
543 (defvar byte-stack+-info nil
544 "An array with the stack adjustment for each byte-code.")
546 (defmacro byte-defop (opcode stack-adjust opname &optional docstring)
547 ;; This is a speed-hack for building the byte-code-vector at compile-time.
548 ;; We fill in the vector at macroexpand-time, and then after the last call
549 ;; to byte-defop, we write the vector out as a constant instead of writing
550 ;; out a bunch of calls to aset.
551 ;; Actually, we don't fill in the vector itself, because that could make
552 ;; it problematic to compile big changes to this compiler; we store the
553 ;; values on its plist, and remove them later in -extrude.
554 (let ((v1 (or (get 'byte-code-vector 'tmp-compile-time-value)
555 (put 'byte-code-vector 'tmp-compile-time-value
556 (make-vector 256 nil))))
557 (v2 (or (get 'byte-stack+-info 'tmp-compile-time-value)
558 (put 'byte-stack+-info 'tmp-compile-time-value
559 (make-vector 256 nil)))))
560 (aset v1 opcode opname)
561 (aset v2 opcode stack-adjust))
562 (if docstring
563 (list 'defconst opname opcode (concat "Byte code opcode " docstring "."))
564 (list 'defconst opname opcode)))
566 (defmacro byte-extrude-byte-code-vectors ()
567 (prog1 (list 'setq 'byte-code-vector
568 (get 'byte-code-vector 'tmp-compile-time-value)
569 'byte-stack+-info
570 (get 'byte-stack+-info 'tmp-compile-time-value))
571 (put 'byte-code-vector 'tmp-compile-time-value nil)
572 (put 'byte-stack+-info 'tmp-compile-time-value nil)))
575 ;; These opcodes are special in that they pack their argument into the
576 ;; opcode word.
578 (byte-defop 0 1 byte-stack-ref "for stack reference")
579 (byte-defop 8 1 byte-varref "for variable reference")
580 (byte-defop 16 -1 byte-varset "for setting a variable")
581 (byte-defop 24 -1 byte-varbind "for binding a variable")
582 (byte-defop 32 0 byte-call "for calling a function")
583 (byte-defop 40 0 byte-unbind "for unbinding special bindings")
584 ;; codes 8-47 are consumed by the preceding opcodes
586 ;; New (in Emacs-24.4) bytecodes for more efficient handling of non-local exits
587 ;; (especially useful in lexical-binding code).
588 (byte-defop 48 0 byte-pophandler)
589 (byte-defop 50 -1 byte-pushcatch)
590 (byte-defop 49 -1 byte-pushconditioncase)
592 ;; unused: 51-55
594 (byte-defop 56 -1 byte-nth)
595 (byte-defop 57 0 byte-symbolp)
596 (byte-defop 58 0 byte-consp)
597 (byte-defop 59 0 byte-stringp)
598 (byte-defop 60 0 byte-listp)
599 (byte-defop 61 -1 byte-eq)
600 (byte-defop 62 -1 byte-memq)
601 (byte-defop 63 0 byte-not)
602 (byte-defop 64 0 byte-car)
603 (byte-defop 65 0 byte-cdr)
604 (byte-defop 66 -1 byte-cons)
605 (byte-defop 67 0 byte-list1)
606 (byte-defop 68 -1 byte-list2)
607 (byte-defop 69 -2 byte-list3)
608 (byte-defop 70 -3 byte-list4)
609 (byte-defop 71 0 byte-length)
610 (byte-defop 72 -1 byte-aref)
611 (byte-defop 73 -2 byte-aset)
612 (byte-defop 74 0 byte-symbol-value)
613 (byte-defop 75 0 byte-symbol-function) ; this was commented out
614 (byte-defop 76 -1 byte-set)
615 (byte-defop 77 -1 byte-fset) ; this was commented out
616 (byte-defop 78 -1 byte-get)
617 (byte-defop 79 -2 byte-substring)
618 (byte-defop 80 -1 byte-concat2)
619 (byte-defop 81 -2 byte-concat3)
620 (byte-defop 82 -3 byte-concat4)
621 (byte-defop 83 0 byte-sub1)
622 (byte-defop 84 0 byte-add1)
623 (byte-defop 85 -1 byte-eqlsign)
624 (byte-defop 86 -1 byte-gtr)
625 (byte-defop 87 -1 byte-lss)
626 (byte-defop 88 -1 byte-leq)
627 (byte-defop 89 -1 byte-geq)
628 (byte-defop 90 -1 byte-diff)
629 (byte-defop 91 0 byte-negate)
630 (byte-defop 92 -1 byte-plus)
631 (byte-defop 93 -1 byte-max)
632 (byte-defop 94 -1 byte-min)
633 (byte-defop 95 -1 byte-mult) ; v19 only
634 (byte-defop 96 1 byte-point)
635 (byte-defop 98 0 byte-goto-char)
636 (byte-defop 99 0 byte-insert)
637 (byte-defop 100 1 byte-point-max)
638 (byte-defop 101 1 byte-point-min)
639 (byte-defop 102 0 byte-char-after)
640 (byte-defop 103 1 byte-following-char)
641 (byte-defop 104 1 byte-preceding-char)
642 (byte-defop 105 1 byte-current-column)
643 (byte-defop 106 0 byte-indent-to)
644 (byte-defop 107 0 byte-scan-buffer-OBSOLETE) ; no longer generated as of v18
645 (byte-defop 108 1 byte-eolp)
646 (byte-defop 109 1 byte-eobp)
647 (byte-defop 110 1 byte-bolp)
648 (byte-defop 111 1 byte-bobp)
649 (byte-defop 112 1 byte-current-buffer)
650 (byte-defop 113 0 byte-set-buffer)
651 (byte-defop 114 0 byte-save-current-buffer
652 "To make a binding to record the current buffer")
653 (byte-defop 115 0 byte-set-mark-OBSOLETE)
654 (byte-defop 116 1 byte-interactive-p-OBSOLETE)
656 ;; These ops are new to v19
657 (byte-defop 117 0 byte-forward-char)
658 (byte-defop 118 0 byte-forward-word)
659 (byte-defop 119 -1 byte-skip-chars-forward)
660 (byte-defop 120 -1 byte-skip-chars-backward)
661 (byte-defop 121 0 byte-forward-line)
662 (byte-defop 122 0 byte-char-syntax)
663 (byte-defop 123 -1 byte-buffer-substring)
664 (byte-defop 124 -1 byte-delete-region)
665 (byte-defop 125 -1 byte-narrow-to-region)
666 (byte-defop 126 1 byte-widen)
667 (byte-defop 127 0 byte-end-of-line)
669 ;; unused: 128
671 ;; These store their argument in the next two bytes
672 (byte-defop 129 1 byte-constant2
673 "for reference to a constant with vector index >= byte-constant-limit")
674 (byte-defop 130 0 byte-goto "for unconditional jump")
675 (byte-defop 131 -1 byte-goto-if-nil "to pop value and jump if it's nil")
676 (byte-defop 132 -1 byte-goto-if-not-nil "to pop value and jump if it's not nil")
677 (byte-defop 133 -1 byte-goto-if-nil-else-pop
678 "to examine top-of-stack, jump and don't pop it if it's nil,
679 otherwise pop it")
680 (byte-defop 134 -1 byte-goto-if-not-nil-else-pop
681 "to examine top-of-stack, jump and don't pop it if it's non nil,
682 otherwise pop it")
684 (byte-defop 135 -1 byte-return "to pop a value and return it from `byte-code'")
685 (byte-defop 136 -1 byte-discard "to discard one value from stack")
686 (byte-defop 137 1 byte-dup "to duplicate the top of the stack")
688 (byte-defop 138 0 byte-save-excursion
689 "to make a binding to record the buffer, point and mark")
690 (byte-defop 139 0 byte-save-window-excursion-OBSOLETE
691 "to make a binding to record entire window configuration")
692 (byte-defop 140 0 byte-save-restriction
693 "to make a binding to record the current buffer clipping restrictions")
694 (byte-defop 141 -1 byte-catch
695 "for catch. Takes, on stack, the tag and an expression for the body")
696 (byte-defop 142 -1 byte-unwind-protect
697 "for unwind-protect. Takes, on stack, an expression for the unwind-action")
699 ;; For condition-case. Takes, on stack, the variable to bind,
700 ;; an expression for the body, and a list of clauses.
701 (byte-defop 143 -2 byte-condition-case)
703 (byte-defop 144 0 byte-temp-output-buffer-setup-OBSOLETE)
704 (byte-defop 145 -1 byte-temp-output-buffer-show-OBSOLETE)
706 ;; these ops are new to v19
708 ;; To unbind back to the beginning of this frame.
709 ;; Not used yet, but will be needed for tail-recursion elimination.
710 (byte-defop 146 0 byte-unbind-all)
712 ;; these ops are new to v19
713 (byte-defop 147 -2 byte-set-marker)
714 (byte-defop 148 0 byte-match-beginning)
715 (byte-defop 149 0 byte-match-end)
716 (byte-defop 150 0 byte-upcase)
717 (byte-defop 151 0 byte-downcase)
718 (byte-defop 152 -1 byte-string=)
719 (byte-defop 153 -1 byte-string<)
720 (byte-defop 154 -1 byte-equal)
721 (byte-defop 155 -1 byte-nthcdr)
722 (byte-defop 156 -1 byte-elt)
723 (byte-defop 157 -1 byte-member)
724 (byte-defop 158 -1 byte-assq)
725 (byte-defop 159 0 byte-nreverse)
726 (byte-defop 160 -1 byte-setcar)
727 (byte-defop 161 -1 byte-setcdr)
728 (byte-defop 162 0 byte-car-safe)
729 (byte-defop 163 0 byte-cdr-safe)
730 (byte-defop 164 -1 byte-nconc)
731 (byte-defop 165 -1 byte-quo)
732 (byte-defop 166 -1 byte-rem)
733 (byte-defop 167 0 byte-numberp)
734 (byte-defop 168 0 byte-integerp)
736 ;; unused: 169-174
737 (byte-defop 175 nil byte-listN)
738 (byte-defop 176 nil byte-concatN)
739 (byte-defop 177 nil byte-insertN)
741 (byte-defop 178 -1 byte-stack-set) ; Stack offset in following one byte.
742 (byte-defop 179 -1 byte-stack-set2) ; Stack offset in following two bytes.
744 ;; If (following one byte & 0x80) == 0
745 ;; discard (following one byte & 0x7F) stack entries
746 ;; else
747 ;; discard (following one byte & 0x7F) stack entries _underneath_ TOS
748 ;; (that is, if the operand = 0x83, ... X Y Z T => ... T)
749 (byte-defop 182 nil byte-discardN)
750 ;; `byte-discardN-preserve-tos' is a pseudo-op that gets turned into
751 ;; `byte-discardN' with the high bit in the operand set (by
752 ;; `byte-compile-lapcode').
753 (defconst byte-discardN-preserve-tos byte-discardN)
755 (byte-defop 183 -2 byte-switch
756 "to take a hash table and a value from the stack, and jump to the address
757 the value maps to, if any.")
759 ;; unused: 182-191
761 (byte-defop 192 1 byte-constant "for reference to a constant")
762 ;; codes 193-255 are consumed by byte-constant.
763 (defconst byte-constant-limit 64
764 "Exclusive maximum index usable in the `byte-constant' opcode.")
766 (defconst byte-goto-ops '(byte-goto byte-goto-if-nil byte-goto-if-not-nil
767 byte-goto-if-nil-else-pop
768 byte-goto-if-not-nil-else-pop
769 byte-pushcatch byte-pushconditioncase)
770 "List of byte-codes whose offset is a pc.")
772 (defconst byte-goto-always-pop-ops '(byte-goto-if-nil byte-goto-if-not-nil))
774 (byte-extrude-byte-code-vectors)
776 ;;; lapcode generator
778 ;; the byte-compiler now does source -> lapcode -> bytecode instead of
779 ;; source -> bytecode, because it's a lot easier to make optimizations
780 ;; on lapcode than on bytecode.
782 ;; Elements of the lapcode list are of the form (<instruction> . <parameter>)
783 ;; where instruction is a symbol naming a byte-code instruction,
784 ;; and parameter is an argument to that instruction, if any.
786 ;; The instruction can be the pseudo-op TAG, which means that this position
787 ;; in the instruction stream is a target of a goto. (car PARAMETER) will be
788 ;; the PC for this location, and the whole instruction "(TAG pc)" will be the
789 ;; parameter for some goto op.
791 ;; If the operation is varbind, varref, varset or push-constant, then the
792 ;; parameter is (variable/constant . index_in_constant_vector).
794 ;; First, the source code is macroexpanded and optimized in various ways.
795 ;; Then the resultant code is compiled into lapcode. Another set of
796 ;; optimizations are then run over the lapcode. Then the variables and
797 ;; constants referenced by the lapcode are collected and placed in the
798 ;; constants-vector. (This happens now so that variables referenced by dead
799 ;; code don't consume space.) And finally, the lapcode is transformed into
800 ;; compacted byte-code.
802 ;; A distinction is made between variables and constants because the variable-
803 ;; referencing instructions are more sensitive to the variables being near the
804 ;; front of the constants-vector than the constant-referencing instructions.
805 ;; Also, this lets us notice references to free variables.
807 (defmacro byte-compile-push-bytecodes (&rest args)
808 "Push bytes onto BVAR, and increment CVAR by the number of bytes pushed.
809 BVAR and CVAR are variables which are updated after evaluating
810 all the arguments.
812 \(fn BYTE1 BYTE2 ... BYTEn BVAR CVAR)"
813 (let ((byte-exprs (butlast args 2))
814 (bytes-var (car (last args 2)))
815 (pc-var (car (last args))))
816 `(setq ,bytes-var ,(if (null (cdr byte-exprs))
817 `(progn (cl-assert (<= 0 ,(car byte-exprs)))
818 (cons ,@byte-exprs ,bytes-var))
819 `(nconc (list ,@(reverse byte-exprs)) ,bytes-var))
820 ,pc-var (+ ,(length byte-exprs) ,pc-var))))
822 (defmacro byte-compile-push-bytecode-const2 (opcode const2 bytes pc)
823 "Push OPCODE and the two-byte constant CONST2 onto BYTES, and add 3 to PC.
824 CONST2 may be evaluated multiple times."
825 `(byte-compile-push-bytecodes ,opcode (logand ,const2 255) (lsh ,const2 -8)
826 ,bytes ,pc))
828 (defun byte-compile-lapcode (lap)
829 "Turns lapcode into bytecode. The lapcode is destroyed."
830 ;; Lapcode modifications: changes the ID of a tag to be the tag's PC.
831 (let ((pc 0) ; Program counter
832 op off ; Operation & offset
833 opcode ; numeric value of OP
834 (bytes '()) ; Put the output bytes here
835 (patchlist nil)) ; List of gotos to patch
836 (dolist (lap-entry lap)
837 (setq op (car lap-entry)
838 off (cdr lap-entry))
839 (cond
840 ((not (symbolp op))
841 (error "Non-symbolic opcode `%s'" op))
842 ((eq op 'TAG)
843 (setcar off pc))
845 (setq opcode
846 (if (eq op 'byte-discardN-preserve-tos)
847 ;; byte-discardN-preserve-tos is a pseudo op, which
848 ;; is actually the same as byte-discardN
849 ;; with a modified argument.
850 byte-discardN
851 (symbol-value op)))
852 (cond ((memq op byte-goto-ops)
853 ;; goto
854 (byte-compile-push-bytecodes opcode nil (cdr off) bytes pc)
855 (push bytes patchlist))
856 ((or (and (consp off)
857 ;; Variable or constant reference
858 (progn
859 (setq off (cdr off))
860 (eq op 'byte-constant)))
861 (and (eq op 'byte-constant)
862 (integerp off)))
863 ;; constant ref
864 (if (< off byte-constant-limit)
865 (byte-compile-push-bytecodes (+ byte-constant off)
866 bytes pc)
867 (byte-compile-push-bytecode-const2 byte-constant2 off
868 bytes pc)))
869 ((and (= opcode byte-stack-set)
870 (> off 255))
871 ;; Use the two-byte version of byte-stack-set if the
872 ;; offset is too large for the normal version.
873 (byte-compile-push-bytecode-const2 byte-stack-set2 off
874 bytes pc))
875 ((and (>= opcode byte-listN)
876 (< opcode byte-discardN))
877 ;; These insns all put their operand into one extra byte.
878 (byte-compile-push-bytecodes opcode off bytes pc))
879 ((= opcode byte-discardN)
880 ;; byte-discardN is weird in that it encodes a flag in the
881 ;; top bit of its one-byte argument. If the argument is
882 ;; too large to fit in 7 bits, the opcode can be repeated.
883 (let ((flag (if (eq op 'byte-discardN-preserve-tos) #x80 0)))
884 (while (> off #x7f)
885 (byte-compile-push-bytecodes opcode (logior #x7f flag)
886 bytes pc)
887 (setq off (- off #x7f)))
888 (byte-compile-push-bytecodes opcode (logior off flag)
889 bytes pc)))
890 ((null off)
891 ;; opcode that doesn't use OFF
892 (byte-compile-push-bytecodes opcode bytes pc))
893 ((and (eq opcode byte-stack-ref) (eq off 0))
894 ;; (stack-ref 0) is really just another name for `dup'.
895 (debug) ;FIXME: When would this happen?
896 (byte-compile-push-bytecodes byte-dup bytes pc))
897 ;; The following three cases are for the special
898 ;; insns that encode their operand into 0, 1, or 2
899 ;; extra bytes depending on its magnitude.
900 ((< off 6)
901 (byte-compile-push-bytecodes (+ opcode off) bytes pc))
902 ((< off 256)
903 (byte-compile-push-bytecodes (+ opcode 6) off bytes pc))
905 (byte-compile-push-bytecode-const2 (+ opcode 7) off
906 bytes pc))))))
907 ;;(if (not (= pc (length bytes)))
908 ;; (error "Compiler error: pc mismatch - %s %s" pc (length bytes)))
909 ;; Patch tag PCs into absolute jumps.
910 (dolist (bytes-tail patchlist)
911 (setq pc (caar bytes-tail)) ; Pick PC from goto's tag.
912 ;; Splits PC's value into 2 bytes. The jump address is
913 ;; "reconstructed" by the `FETCH2' macro in `bytecode.c'.
914 (setcar (cdr bytes-tail) (logand pc 255))
915 (setcar bytes-tail (lsh pc -8))
916 ;; FIXME: Replace this by some workaround.
917 (if (> (car bytes-tail) 255) (error "Bytecode overflow")))
919 ;; Similarly, replace TAGs in all jump tables with the correct PC index.
920 (dolist (hash-table byte-compile-jump-tables)
921 (maphash #'(lambda (value tag)
922 (setq pc (cadr tag))
923 ;; We don't need to split PC here, as it is stored as a lisp
924 ;; object in the hash table (whereas other goto-* ops store
925 ;; it within 2 bytes in the byte string).
926 (puthash value pc hash-table))
927 hash-table))
928 (apply 'unibyte-string (nreverse bytes))))
931 ;;; compile-time evaluation
933 (defun byte-compile-cl-file-p (file)
934 "Return non-nil if FILE is one of the CL files."
935 (and (stringp file)
936 (string-match "^cl\\.el" (file-name-nondirectory file))))
938 (defun byte-compile-eval (form)
939 "Eval FORM and mark the functions defined therein.
940 Each function's symbol gets added to `byte-compile-noruntime-functions'."
941 (let ((hist-orig load-history)
942 (hist-nil-orig current-load-list))
943 (prog1 (eval form lexical-binding)
944 (when (byte-compile-warning-enabled-p 'noruntime)
945 (let ((hist-new load-history)
946 (hist-nil-new current-load-list))
947 ;; Go through load-history, look for newly loaded files
948 ;; and mark all the functions defined therein.
949 (while (and hist-new (not (eq hist-new hist-orig)))
950 (let ((xs (pop hist-new))
951 old-autoloads)
952 ;; Make sure the file was not already loaded before.
953 (unless (assoc (car xs) hist-orig)
954 (dolist (s xs)
955 (cond
956 ((and (consp s) (eq t (car s)))
957 (push (cdr s) old-autoloads))
958 ((and (consp s) (memq (car s) '(autoload defun)))
959 (unless (memq (cdr s) old-autoloads)
960 (push (cdr s) byte-compile-noruntime-functions))))))))
961 ;; Go through current-load-list for the locally defined funs.
962 (let (old-autoloads)
963 (while (and hist-nil-new (not (eq hist-nil-new hist-nil-orig)))
964 (let ((s (pop hist-nil-new)))
965 (when (and (symbolp s) (not (memq s old-autoloads)))
966 (push s byte-compile-noruntime-functions))
967 (when (and (consp s) (eq t (car s)))
968 (push (cdr s) old-autoloads)))))))
969 (when (byte-compile-warning-enabled-p 'cl-functions)
970 (let ((hist-new load-history))
971 ;; Go through load-history, looking for the cl files.
972 ;; Since new files are added at the start of load-history,
973 ;; we scan the new history until the tail matches the old.
974 (while (and (not byte-compile-cl-functions)
975 hist-new (not (eq hist-new hist-orig)))
976 ;; We used to check if the file had already been loaded,
977 ;; but it is better to check non-nil byte-compile-cl-functions.
978 (and (byte-compile-cl-file-p (car (pop hist-new)))
979 (byte-compile-find-cl-functions))))))))
981 (defun byte-compile-eval-before-compile (form)
982 "Evaluate FORM for `eval-and-compile'."
983 (let ((hist-nil-orig current-load-list))
984 (prog1 (eval form lexical-binding)
985 ;; (eval-and-compile (require 'cl) turns off warnings for cl functions.
986 ;; FIXME Why does it do that - just as a hack?
987 ;; There are other ways to do this nowadays.
988 (let ((tem current-load-list))
989 (while (not (eq tem hist-nil-orig))
990 (when (equal (car tem) '(require . cl))
991 (byte-compile-disable-warning 'cl-functions))
992 (setq tem (cdr tem)))))))
994 ;;; byte compiler messages
996 (defvar byte-compile-current-form nil)
997 (defvar byte-compile-dest-file nil)
998 (defvar byte-compile-current-file nil)
999 (defvar byte-compile-current-group nil)
1000 (defvar byte-compile-current-buffer nil)
1002 ;; Log something that isn't a warning.
1003 (defmacro byte-compile-log (format-string &rest args)
1004 `(and
1005 byte-optimize
1006 (memq byte-optimize-log '(t source))
1007 (let ((print-escape-newlines t)
1008 (print-level 4)
1009 (print-length 4))
1010 (byte-compile-log-1
1011 (format-message
1012 ,format-string
1013 ,@(mapcar
1014 (lambda (x) (if (symbolp x) (list 'prin1-to-string x) x))
1015 args))))))
1017 ;; Log something that isn't a warning.
1018 (defun byte-compile-log-1 (string)
1019 (with-current-buffer byte-compile-log-buffer
1020 (let ((inhibit-read-only t))
1021 (goto-char (point-max))
1022 (byte-compile-warning-prefix nil nil)
1023 (cond (noninteractive
1024 (message " %s" string))
1026 (insert (format "%s\n" string)))))))
1028 (defvar byte-compile-read-position nil
1029 "Character position we began the last `read' from.")
1030 (defvar byte-compile-last-position nil
1031 "Last known character position in the input.")
1033 ;; copied from gnus-util.el
1034 (defsubst byte-compile-delete-first (elt list)
1035 (if (eq (car list) elt)
1036 (cdr list)
1037 (let ((total list))
1038 (while (and (cdr list)
1039 (not (eq (cadr list) elt)))
1040 (setq list (cdr list)))
1041 (when (cdr list)
1042 (setcdr list (cddr list)))
1043 total)))
1045 ;; The purpose of `byte-compile-set-symbol-position' is to attempt to
1046 ;; set `byte-compile-last-position' to the "current position" in the
1047 ;; raw source code. This is used for warning and error messages.
1049 ;; The function should be called for most occurrences of symbols in
1050 ;; the forms being compiled, strictly in the order they occur in the
1051 ;; source code. It should never be called twice for any single
1052 ;; occurrence, and should not be called for symbols generated by the
1053 ;; byte compiler itself.
1055 ;; The function works by scanning the elements in the alist
1056 ;; `read-symbol-positions-list' for the next match for the symbol
1057 ;; after the current value of `byte-compile-last-position', setting
1058 ;; that variable to the match's character position, then deleting the
1059 ;; matching element from the list. Thus the new value for
1060 ;; `byte-compile-last-position' is later than the old value unless,
1061 ;; perhaps, ALLOW-PREVIOUS is non-nil.
1063 ;; So your're probably asking yourself: Isn't this function a gross
1064 ;; hack? And the answer, of course, would be yes.
1065 (defun byte-compile-set-symbol-position (sym &optional allow-previous)
1066 (when byte-compile-read-position
1067 (let ((last byte-compile-last-position)
1068 entry)
1069 (while (progn
1070 (setq entry (assq sym read-symbol-positions-list))
1071 (when entry
1072 (setq byte-compile-last-position
1073 (+ byte-compile-read-position (cdr entry))
1074 read-symbol-positions-list
1075 (byte-compile-delete-first
1076 entry read-symbol-positions-list)))
1077 (and entry
1078 (or (and allow-previous
1079 (not (= last byte-compile-last-position)))
1080 (> last byte-compile-last-position))))))))
1082 (defvar byte-compile-last-warned-form nil)
1083 (defvar byte-compile-last-logged-file nil)
1084 (defvar byte-compile-root-dir nil
1085 "Directory relative to which file names in error messages are written.")
1087 ;; FIXME: We should maybe extend abbreviate-file-name with an optional DIR
1088 ;; argument to try and use a relative file-name.
1089 (defun byte-compile-abbreviate-file (file &optional dir)
1090 (let ((f1 (abbreviate-file-name file))
1091 (f2 (file-relative-name file dir)))
1092 (if (< (length f2) (length f1)) f2 f1)))
1094 ;; This is used as warning-prefix for the compiler.
1095 ;; It is always called with the warnings buffer current.
1096 (defun byte-compile-warning-prefix (level entry)
1097 (let* ((inhibit-read-only t)
1098 (dir (or byte-compile-root-dir default-directory))
1099 (file (cond ((stringp byte-compile-current-file)
1100 (format "%s:" (byte-compile-abbreviate-file
1101 byte-compile-current-file dir)))
1102 ((bufferp byte-compile-current-file)
1103 (format "Buffer %s:"
1104 (buffer-name byte-compile-current-file)))
1105 ;; We might be simply loading a file that
1106 ;; contains explicit calls to byte-compile functions.
1107 ((stringp load-file-name)
1108 (format "%s:" (byte-compile-abbreviate-file
1109 load-file-name dir)))
1110 (t "")))
1111 (pos (if (and byte-compile-current-file
1112 (integerp byte-compile-read-position))
1113 (with-current-buffer byte-compile-current-buffer
1114 (format "%d:%d:"
1115 (save-excursion
1116 (goto-char byte-compile-last-position)
1117 (1+ (count-lines (point-min) (point-at-bol))))
1118 (save-excursion
1119 (goto-char byte-compile-last-position)
1120 (1+ (current-column)))))
1121 ""))
1122 (form (if (eq byte-compile-current-form :end) "end of data"
1123 (or byte-compile-current-form "toplevel form"))))
1124 (when (or (and byte-compile-current-file
1125 (not (equal byte-compile-current-file
1126 byte-compile-last-logged-file)))
1127 (and byte-compile-current-form
1128 (not (eq byte-compile-current-form
1129 byte-compile-last-warned-form))))
1130 (insert (format "\nIn %s:\n" form)))
1131 (when level
1132 (insert (format "%s%s" file pos))))
1133 (setq byte-compile-last-logged-file byte-compile-current-file
1134 byte-compile-last-warned-form byte-compile-current-form)
1135 entry)
1137 ;; This no-op function is used as the value of warning-series
1138 ;; to tell inner calls to displaying-byte-compile-warnings
1139 ;; not to bind warning-series.
1140 (defun byte-compile-warning-series (&rest _ignore)
1141 nil)
1143 ;; (compile-mode) will cause this to be loaded.
1144 (declare-function compilation-forget-errors "compile" ())
1146 ;; Log the start of a file in `byte-compile-log-buffer', and mark it as done.
1147 ;; Return the position of the start of the page in the log buffer.
1148 ;; But do nothing in batch mode.
1149 (defun byte-compile-log-file ()
1150 (and (not (equal byte-compile-current-file byte-compile-last-logged-file))
1151 (not noninteractive)
1152 (with-current-buffer (get-buffer-create byte-compile-log-buffer)
1153 (goto-char (point-max))
1154 (let* ((inhibit-read-only t)
1155 (dir (and byte-compile-current-file
1156 (file-name-directory byte-compile-current-file)))
1157 (was-same (equal default-directory dir))
1159 (when dir
1160 (unless was-same
1161 (insert (format-message "Leaving directory `%s'\n"
1162 default-directory))))
1163 (unless (bolp)
1164 (insert "\n"))
1165 (setq pt (point-marker))
1166 (if byte-compile-current-file
1167 (insert "\f\nCompiling "
1168 (if (stringp byte-compile-current-file)
1169 (concat "file " byte-compile-current-file)
1170 (concat "buffer "
1171 (buffer-name byte-compile-current-file)))
1172 " at " (current-time-string) "\n")
1173 (insert "\f\nCompiling no file at " (current-time-string) "\n"))
1174 (when dir
1175 (setq default-directory dir)
1176 (unless was-same
1177 (insert (format-message "Entering directory `%s'\n"
1178 default-directory))))
1179 (setq byte-compile-last-logged-file byte-compile-current-file
1180 byte-compile-last-warned-form nil)
1181 ;; Do this after setting default-directory.
1182 (unless (derived-mode-p 'compilation-mode) (compilation-mode))
1183 (compilation-forget-errors)
1184 pt))))
1186 (defun byte-compile-log-warning (string &optional fill level)
1187 "Log a message STRING in `byte-compile-log-buffer'.
1188 Also log the current function and file if not already done. If
1189 FILL is non-nil, set `warning-fill-prefix' to four spaces. LEVEL
1190 is the warning level (`:warning' or `:error'). Do not call this
1191 function directly; use `byte-compile-warn' or
1192 `byte-compile-report-error' instead."
1193 (let ((warning-prefix-function 'byte-compile-warning-prefix)
1194 (warning-type-format "")
1195 (warning-fill-prefix (if fill " ")))
1196 (display-warning 'bytecomp string level byte-compile-log-buffer)))
1198 (defun byte-compile-warn (format &rest args)
1199 "Issue a byte compiler warning; use (format-message FORMAT ARGS...) for message."
1200 (setq format (apply #'format-message format args))
1201 (if byte-compile-error-on-warn
1202 (error "%s" format) ; byte-compile-file catches and logs it
1203 (byte-compile-log-warning format t :warning)))
1205 (defun byte-compile-warn-obsolete (symbol)
1206 "Warn that SYMBOL (a variable or function) is obsolete."
1207 (when (byte-compile-warning-enabled-p 'obsolete)
1208 (let* ((funcp (get symbol 'byte-obsolete-info))
1209 (msg (macroexp--obsolete-warning
1210 symbol
1211 (or funcp (get symbol 'byte-obsolete-variable))
1212 (if funcp "function" "variable"))))
1213 (unless (and funcp (memq symbol byte-compile-not-obsolete-funcs))
1214 (byte-compile-warn "%s" msg)))))
1216 (defun byte-compile-report-error (error-info &optional fill)
1217 "Report Lisp error in compilation.
1218 ERROR-INFO is the error data, in the form of either (ERROR-SYMBOL . DATA)
1219 or STRING. If FILL is non-nil, set ‘warning-fill-prefix’ to four spaces
1220 when printing the error message."
1221 (setq byte-compiler-error-flag t)
1222 (byte-compile-log-warning
1223 (if (stringp error-info) error-info
1224 (error-message-string error-info))
1225 fill :error))
1227 ;;; sanity-checking arglists
1229 (defun byte-compile-fdefinition (name macro-p)
1230 ;; If a function has an entry saying (FUNCTION . t).
1231 ;; that means we know it is defined but we don't know how.
1232 ;; If a function has an entry saying (FUNCTION . nil),
1233 ;; that means treat it as not defined.
1234 (let* ((list (if macro-p
1235 byte-compile-macro-environment
1236 byte-compile-function-environment))
1237 (env (cdr (assq name list))))
1238 (or env
1239 (let ((fn name))
1240 (while (and (symbolp fn)
1241 (fboundp fn)
1242 (or (symbolp (symbol-function fn))
1243 (consp (symbol-function fn))
1244 (and (not macro-p)
1245 (byte-code-function-p (symbol-function fn)))))
1246 (setq fn (symbol-function fn)))
1247 (let ((advertised (gethash (if (and (symbolp fn) (fboundp fn))
1248 ;; Could be a subr.
1249 (symbol-function fn)
1251 advertised-signature-table t)))
1252 (cond
1253 ((listp advertised)
1254 (if macro-p
1255 `(macro lambda ,advertised)
1256 `(lambda ,advertised)))
1257 ((and (not macro-p) (byte-code-function-p fn)) fn)
1258 ((not (consp fn)) nil)
1259 ((eq 'macro (car fn)) (cdr fn))
1260 (macro-p nil)
1261 ((eq 'autoload (car fn)) nil)
1262 (t fn)))))))
1264 (defun byte-compile-arglist-signature (arglist)
1265 (cond
1266 ((listp arglist)
1267 (let ((args 0)
1268 opts
1269 restp)
1270 (while arglist
1271 (cond ((eq (car arglist) '&optional)
1272 (or opts (setq opts 0)))
1273 ((eq (car arglist) '&rest)
1274 (if (cdr arglist)
1275 (setq restp t
1276 arglist nil)))
1278 (if opts
1279 (setq opts (1+ opts))
1280 (setq args (1+ args)))))
1281 (setq arglist (cdr arglist)))
1282 (cons args (if restp nil (if opts (+ args opts) args)))))
1283 ;; Unknown arglist.
1284 (t '(0))))
1286 (defun byte-compile--function-signature (f)
1287 ;; Similar to help-function-arglist, except that it returns the info
1288 ;; in a different format.
1289 (and (eq 'macro (car-safe f)) (setq f (cdr f)))
1290 ;; Advice wrappers have "catch all" args, so fetch the actual underlying
1291 ;; function to find the real arguments.
1292 (while (advice--p f) (setq f (advice--cdr f)))
1293 (if (eq (car-safe f) 'declared)
1294 (byte-compile-arglist-signature (nth 1 f))
1295 (condition-case nil
1296 (let ((sig (func-arity f)))
1297 (if (numberp (cdr sig)) sig (list (car sig))))
1298 (error '(0)))))
1300 (defun byte-compile-arglist-signatures-congruent-p (old new)
1301 (not (or
1302 (> (car new) (car old)) ; requires more args now
1303 (and (null (cdr old)) ; took rest-args, doesn't any more
1304 (cdr new))
1305 (and (cdr new) (cdr old) ; can't take as many args now
1306 (< (cdr new) (cdr old)))
1309 (defun byte-compile-arglist-signature-string (signature)
1310 (cond ((null (cdr signature))
1311 (format "%d+" (car signature)))
1312 ((= (car signature) (cdr signature))
1313 (format "%d" (car signature)))
1314 (t (format "%d-%d" (car signature) (cdr signature)))))
1316 (defun byte-compile-function-warn (f nargs def)
1317 (byte-compile-set-symbol-position f)
1318 (when (get f 'byte-obsolete-info)
1319 (byte-compile-warn-obsolete f))
1321 ;; Check to see if the function will be available at runtime
1322 ;; and/or remember its arity if it's unknown.
1323 (or (and (or def (fboundp f)) ; might be a subr or autoload.
1324 (not (memq f byte-compile-noruntime-functions)))
1325 (eq f byte-compile-current-form) ; ## This doesn't work
1326 ; with recursion.
1327 ;; It's a currently-undefined function.
1328 ;; Remember number of args in call.
1329 (let ((cons (assq f byte-compile-unresolved-functions)))
1330 (if cons
1331 (or (memq nargs (cdr cons))
1332 (push nargs (cdr cons)))
1333 (push (list f nargs)
1334 byte-compile-unresolved-functions)))))
1336 ;; Warn if the form is calling a function with the wrong number of arguments.
1337 (defun byte-compile-callargs-warn (form)
1338 (let* ((def (or (byte-compile-fdefinition (car form) nil)
1339 (byte-compile-fdefinition (car form) t)))
1340 (sig (byte-compile--function-signature def))
1341 (ncall (length (cdr form))))
1342 ;; Check many or unevalled from subr-arity.
1343 (if (and (cdr-safe sig)
1344 (not (numberp (cdr sig))))
1345 (setcdr sig nil))
1346 (if sig
1347 (when (or (< ncall (car sig))
1348 (and (cdr sig) (> ncall (cdr sig))))
1349 (byte-compile-set-symbol-position (car form))
1350 (byte-compile-warn
1351 "%s called with %d argument%s, but %s %s"
1352 (car form) ncall
1353 (if (= 1 ncall) "" "s")
1354 (if (< ncall (car sig))
1355 "requires"
1356 "accepts only")
1357 (byte-compile-arglist-signature-string sig))))
1358 (byte-compile-format-warn form)
1359 (byte-compile-function-warn (car form) (length (cdr form)) def)))
1361 (defun byte-compile-format-warn (form)
1362 "Warn if FORM is `format'-like with inconsistent args.
1363 Applies if head of FORM is a symbol with non-nil property
1364 `byte-compile-format-like' and first arg is a constant string.
1365 Then check the number of format fields matches the number of
1366 extra args."
1367 (when (and (symbolp (car form))
1368 (stringp (nth 1 form))
1369 (get (car form) 'byte-compile-format-like))
1370 (let ((nfields (with-temp-buffer
1371 (insert (nth 1 form))
1372 (goto-char (point-min))
1373 (let ((i 0) (n 0))
1374 (while (re-search-forward "%." nil t)
1375 (backward-char)
1376 (unless (eq ?% (char-after))
1377 (setq i (if (looking-at "\\([0-9]+\\)\\$")
1378 (string-to-number (match-string 1) 10)
1379 (1+ i))
1380 n (max n i)))
1381 (forward-char))
1382 n)))
1383 (nargs (- (length form) 2)))
1384 (unless (= nargs nfields)
1385 (byte-compile-warn
1386 "`%s' called with %d args to fill %d format field(s)" (car form)
1387 nargs nfields)))))
1389 (dolist (elt '(format message error))
1390 (put elt 'byte-compile-format-like t))
1392 ;; Warn if a custom definition fails to specify :group, or :type.
1393 (defun byte-compile-nogroup-warn (form)
1394 (let ((keyword-args (cdr (cdr (cdr (cdr form)))))
1395 (name (cadr form)))
1396 (when (eq (car-safe name) 'quote)
1397 (or (not (eq (car form) 'custom-declare-variable))
1398 (plist-get keyword-args :type)
1399 (byte-compile-warn
1400 "defcustom for `%s' fails to specify type" (cadr name)))
1401 (if (and (memq (car form) '(custom-declare-face custom-declare-variable))
1402 byte-compile-current-group)
1403 ;; The group will be provided implicitly.
1405 (or (and (eq (car form) 'custom-declare-group)
1406 (equal name ''emacs))
1407 (plist-get keyword-args :group)
1408 (byte-compile-warn
1409 "%s for `%s' fails to specify containing group"
1410 (cdr (assq (car form)
1411 '((custom-declare-group . defgroup)
1412 (custom-declare-face . defface)
1413 (custom-declare-variable . defcustom))))
1414 (cadr name)))
1415 ;; Update the current group, if needed.
1416 (if (and byte-compile-current-file ;Only when compiling a whole file.
1417 (eq (car form) 'custom-declare-group))
1418 (setq byte-compile-current-group (cadr name)))))))
1420 ;; Warn if the function or macro is being redefined with a different
1421 ;; number of arguments.
1422 (defun byte-compile-arglist-warn (name arglist macrop)
1423 ;; This is the first definition. See if previous calls are compatible.
1424 (let ((calls (assq name byte-compile-unresolved-functions))
1425 nums sig min max)
1426 (when (and calls macrop)
1427 (byte-compile-warn "macro `%s' defined too late" name))
1428 (setq byte-compile-unresolved-functions
1429 (delq calls byte-compile-unresolved-functions))
1430 (setq calls (delq t calls)) ;Ignore higher-order uses of the function.
1431 (when (cdr calls)
1432 (when (and (symbolp name)
1433 (eq (function-get name 'byte-optimizer)
1434 'byte-compile-inline-expand))
1435 (byte-compile-warn "defsubst `%s' was used before it was defined"
1436 name))
1437 (setq sig (byte-compile-arglist-signature arglist)
1438 nums (sort (copy-sequence (cdr calls)) (function <))
1439 min (car nums)
1440 max (car (nreverse nums)))
1441 (when (or (< min (car sig))
1442 (and (cdr sig) (> max (cdr sig))))
1443 (byte-compile-set-symbol-position name)
1444 (byte-compile-warn
1445 "%s being defined to take %s%s, but was previously called with %s"
1446 name
1447 (byte-compile-arglist-signature-string sig)
1448 (if (equal sig '(1 . 1)) " arg" " args")
1449 (byte-compile-arglist-signature-string (cons min max))))))
1450 (let* ((old (byte-compile-fdefinition name macrop))
1451 (initial (and macrop
1452 (cdr (assq name
1453 byte-compile-initial-macro-environment)))))
1454 ;; Assumes an element of b-c-i-macro-env that is a symbol points
1455 ;; to a defined function. (Bug#8646)
1456 (and initial (symbolp initial)
1457 (setq old (byte-compile-fdefinition initial nil)))
1458 (when (and old (not (eq old t)))
1459 (let ((sig1 (byte-compile--function-signature old))
1460 (sig2 (byte-compile-arglist-signature arglist)))
1461 (unless (byte-compile-arglist-signatures-congruent-p sig1 sig2)
1462 (byte-compile-set-symbol-position name)
1463 (byte-compile-warn
1464 "%s %s used to take %s %s, now takes %s"
1465 (if macrop "macro" "function")
1466 name
1467 (byte-compile-arglist-signature-string sig1)
1468 (if (equal sig1 '(1 . 1)) "argument" "arguments")
1469 (byte-compile-arglist-signature-string sig2)))))))
1471 (defvar byte-compile-cl-functions nil
1472 "List of functions defined in CL.")
1474 ;; Can't just add this to cl-load-hook, because that runs just before
1475 ;; the forms from cl.el get added to load-history.
1476 (defun byte-compile-find-cl-functions ()
1477 (unless byte-compile-cl-functions
1478 (dolist (elt load-history)
1479 (and (byte-compile-cl-file-p (car elt))
1480 (dolist (e (cdr elt))
1481 ;; Includes the cl-foo functions that cl autoloads.
1482 (when (memq (car-safe e) '(autoload defun))
1483 (push (cdr e) byte-compile-cl-functions)))))))
1485 (defun byte-compile-cl-warn (form)
1486 "Warn if FORM is a call of a function from the CL package."
1487 (let ((func (car-safe form)))
1488 (if (and byte-compile-cl-functions
1489 (memq func byte-compile-cl-functions)
1490 ;; Aliases which won't have been expanded at this point.
1491 ;; These aren't all aliases of subrs, so not trivial to
1492 ;; avoid hardwiring the list.
1493 (not (memq func
1494 '(cl--block-wrapper cl--block-throw
1495 multiple-value-call nth-value
1496 copy-seq first second rest endp cl-member
1497 ;; These are included in generated code
1498 ;; that can't be called except at compile time
1499 ;; or unless cl is loaded anyway.
1500 cl--defsubst-expand cl-struct-setf-expander
1501 ;; These would sometimes be warned about
1502 ;; but such warnings are never useful,
1503 ;; so don't warn about them.
1504 macroexpand
1505 cl--compiling-file))))
1506 (byte-compile-warn "function `%s' from cl package called at runtime"
1507 func)))
1508 form)
1510 (defun byte-compile-print-syms (str1 strn syms)
1511 (when syms
1512 (byte-compile-set-symbol-position (car syms) t))
1513 (cond ((and (cdr syms) (not noninteractive))
1514 (let* ((str strn)
1515 (L (length str))
1517 (while syms
1518 (setq s (symbol-name (pop syms))
1519 L (+ L (length s) 2))
1520 (if (< L (1- fill-column))
1521 (setq str (concat str " " s (and syms ",")))
1522 (setq str (concat str "\n " s (and syms ","))
1523 L (+ (length s) 4))))
1524 (byte-compile-warn "%s" str)))
1525 ((cdr syms)
1526 (byte-compile-warn "%s %s"
1527 strn
1528 (mapconcat #'symbol-name syms ", ")))
1530 (syms
1531 (byte-compile-warn str1 (car syms)))))
1533 ;; If we have compiled any calls to functions which are not known to be
1534 ;; defined, issue a warning enumerating them.
1535 ;; `unresolved' in the list `byte-compile-warnings' disables this.
1536 (defun byte-compile-warn-about-unresolved-functions ()
1537 (when (byte-compile-warning-enabled-p 'unresolved)
1538 (let ((byte-compile-current-form :end)
1539 (noruntime nil)
1540 (unresolved nil))
1541 ;; Separate the functions that will not be available at runtime
1542 ;; from the truly unresolved ones.
1543 (dolist (f byte-compile-unresolved-functions)
1544 (setq f (car f))
1545 (when (not (memq f byte-compile-new-defuns))
1546 (if (fboundp f) (push f noruntime) (push f unresolved))))
1547 ;; Complain about the no-run-time functions
1548 (byte-compile-print-syms
1549 "the function `%s' might not be defined at runtime."
1550 "the following functions might not be defined at runtime:"
1551 noruntime)
1552 ;; Complain about the unresolved functions
1553 (byte-compile-print-syms
1554 "the function `%s' is not known to be defined."
1555 "the following functions are not known to be defined:"
1556 unresolved)))
1557 nil)
1560 ;; Dynamically bound in byte-compile-from-buffer.
1561 ;; NB also used in cl.el and cl-macs.el.
1562 (defvar byte-compile--outbuffer)
1564 (defmacro byte-compile-close-variables (&rest body)
1565 (declare (debug t))
1566 `(let (;;
1567 ;; Close over these variables to encapsulate the
1568 ;; compilation state
1570 (byte-compile-macro-environment
1571 ;; Copy it because the compiler may patch into the
1572 ;; macroenvironment.
1573 (copy-alist byte-compile-initial-macro-environment))
1574 (byte-compile--outbuffer nil)
1575 (byte-compile-function-environment nil)
1576 (byte-compile-bound-variables nil)
1577 (byte-compile-lexical-variables nil)
1578 (byte-compile-const-variables nil)
1579 (byte-compile-free-references nil)
1580 (byte-compile-free-assignments nil)
1582 ;; Close over these variables so that `byte-compiler-options'
1583 ;; can change them on a per-file basis.
1585 (byte-compile-verbose byte-compile-verbose)
1586 (byte-optimize byte-optimize)
1587 (byte-compile-dynamic byte-compile-dynamic)
1588 (byte-compile-dynamic-docstrings
1589 byte-compile-dynamic-docstrings)
1590 ;; (byte-compile-generate-emacs19-bytecodes
1591 ;; byte-compile-generate-emacs19-bytecodes)
1592 (byte-compile-warnings byte-compile-warnings)
1594 ,@body))
1596 (defmacro displaying-byte-compile-warnings (&rest body)
1597 (declare (debug t))
1598 `(let* ((--displaying-byte-compile-warnings-fn (lambda () ,@body))
1599 (warning-series-started
1600 (and (markerp warning-series)
1601 (eq (marker-buffer warning-series)
1602 (get-buffer byte-compile-log-buffer)))))
1603 (byte-compile-find-cl-functions)
1604 (if (or (eq warning-series 'byte-compile-warning-series)
1605 warning-series-started)
1606 ;; warning-series does come from compilation,
1607 ;; so don't bind it, but maybe do set it.
1608 (let (tem)
1609 ;; Log the file name. Record position of that text.
1610 (setq tem (byte-compile-log-file))
1611 (unless warning-series-started
1612 (setq warning-series (or tem 'byte-compile-warning-series)))
1613 (if byte-compile-debug
1614 (funcall --displaying-byte-compile-warnings-fn)
1615 (condition-case error-info
1616 (funcall --displaying-byte-compile-warnings-fn)
1617 (error (byte-compile-report-error error-info)))))
1618 ;; warning-series does not come from compilation, so bind it.
1619 (let ((warning-series
1620 ;; Log the file name. Record position of that text.
1621 (or (byte-compile-log-file) 'byte-compile-warning-series)))
1622 (if byte-compile-debug
1623 (funcall --displaying-byte-compile-warnings-fn)
1624 (condition-case error-info
1625 (funcall --displaying-byte-compile-warnings-fn)
1626 (error (byte-compile-report-error error-info))))))))
1628 ;;;###autoload
1629 (defun byte-force-recompile (directory)
1630 "Recompile every `.el' file in DIRECTORY that already has a `.elc' file.
1631 Files in subdirectories of DIRECTORY are processed also."
1632 (interactive "DByte force recompile (directory): ")
1633 (byte-recompile-directory directory nil t))
1635 ;;;###autoload
1636 (defun byte-recompile-directory (directory &optional arg force)
1637 "Recompile every `.el' file in DIRECTORY that needs recompilation.
1638 This happens when a `.elc' file exists but is older than the `.el' file.
1639 Files in subdirectories of DIRECTORY are processed also.
1641 If the `.elc' file does not exist, normally this function *does not*
1642 compile the corresponding `.el' file. However, if the prefix argument
1643 ARG is 0, that means do compile all those files. A nonzero
1644 ARG means ask the user, for each such `.el' file, whether to
1645 compile it. A nonzero ARG also means ask about each subdirectory
1646 before scanning it.
1648 If the third argument FORCE is non-nil, recompile every `.el' file
1649 that already has a `.elc' file."
1650 (interactive "DByte recompile directory: \nP")
1651 (if arg (setq arg (prefix-numeric-value arg)))
1652 (if noninteractive
1654 (save-some-buffers
1655 nil (lambda ()
1656 (let ((file (buffer-file-name)))
1657 (and file
1658 (string-match-p emacs-lisp-file-regexp file)
1659 (file-in-directory-p file directory)))))
1660 (force-mode-line-update))
1661 (with-current-buffer (get-buffer-create byte-compile-log-buffer)
1662 (setq default-directory (expand-file-name directory))
1663 ;; compilation-mode copies value of default-directory.
1664 (unless (eq major-mode 'compilation-mode)
1665 (compilation-mode))
1666 (let ((directories (list default-directory))
1667 (default-directory default-directory)
1668 (skip-count 0)
1669 (fail-count 0)
1670 (file-count 0)
1671 (dir-count 0)
1672 last-dir)
1673 (displaying-byte-compile-warnings
1674 (while directories
1675 (setq directory (car directories))
1676 (message "Checking %s..." directory)
1677 (dolist (file (directory-files directory))
1678 (let ((source (expand-file-name file directory)))
1679 (if (file-directory-p source)
1680 (and (not (member file '("RCS" "CVS")))
1681 (not (eq ?\. (aref file 0)))
1682 (not (file-symlink-p source))
1683 ;; This file is a subdirectory. Handle them differently.
1684 (or (null arg) (eq 0 arg)
1685 (y-or-n-p (concat "Check " source "? ")))
1686 (setq directories (nconc directories (list source))))
1687 ;; It is an ordinary file. Decide whether to compile it.
1688 (if (and (string-match emacs-lisp-file-regexp source)
1689 ;; The next 2 tests avoid compiling lock files
1690 (file-readable-p source)
1691 (not (string-match "\\`\\.#" file))
1692 (not (auto-save-file-name-p source))
1693 (not (string-equal dir-locals-file
1694 (file-name-nondirectory source))))
1695 (progn (cl-incf
1696 (pcase (byte-recompile-file source force arg)
1697 (`no-byte-compile skip-count)
1698 (`t file-count)
1699 (_ fail-count)))
1700 (or noninteractive
1701 (message "Checking %s..." directory))
1702 (if (not (eq last-dir directory))
1703 (setq last-dir directory
1704 dir-count (1+ dir-count)))
1705 )))))
1706 (setq directories (cdr directories))))
1707 (message "Done (Total of %d file%s compiled%s%s%s)"
1708 file-count (if (= file-count 1) "" "s")
1709 (if (> fail-count 0) (format ", %d failed" fail-count) "")
1710 (if (> skip-count 0) (format ", %d skipped" skip-count) "")
1711 (if (> dir-count 1)
1712 (format " in %d directories" dir-count) "")))))
1714 (defvar no-byte-compile nil
1715 "Non-nil to prevent byte-compiling of Emacs Lisp code.
1716 This is normally set in local file variables at the end of the elisp file:
1718 \;; Local Variables:\n;; no-byte-compile: t\n;; End: ") ;Backslash for compile-main.
1719 ;;;###autoload(put 'no-byte-compile 'safe-local-variable 'booleanp)
1721 (defun byte-recompile-file (filename &optional force arg load)
1722 "Recompile FILENAME file if it needs recompilation.
1723 This happens when its `.elc' file is older than itself.
1725 If the `.elc' file exists and is up-to-date, normally this function
1726 *does not* compile FILENAME. If the prefix argument FORCE is non-nil,
1727 however, it compiles FILENAME even if the destination already
1728 exists and is up-to-date.
1730 If the `.elc' file does not exist, normally this function *does not*
1731 compile FILENAME. If optional argument ARG is 0, it compiles
1732 the input file even if the `.elc' file does not exist.
1733 Any other non-nil value of ARG means to ask the user.
1735 If optional argument LOAD is non-nil, loads the file after compiling.
1737 If compilation is needed, this functions returns the result of
1738 `byte-compile-file'; otherwise it returns `no-byte-compile'."
1739 (interactive
1740 (let ((file buffer-file-name)
1741 (file-name nil)
1742 (file-dir nil))
1743 (and file
1744 (derived-mode-p 'emacs-lisp-mode)
1745 (setq file-name (file-name-nondirectory file)
1746 file-dir (file-name-directory file)))
1747 (list (read-file-name (if current-prefix-arg
1748 "Byte compile file: "
1749 "Byte recompile file: ")
1750 file-dir file-name nil)
1751 current-prefix-arg)))
1752 (let ((dest (byte-compile-dest-file filename))
1753 ;; Expand now so we get the current buffer's defaults
1754 (filename (expand-file-name filename)))
1755 (if (if (file-exists-p dest)
1756 ;; File was already compiled
1757 ;; Compile if forced to, or filename newer
1758 (or force
1759 (file-newer-than-file-p filename dest))
1760 (and arg
1761 (or (eq 0 arg)
1762 (y-or-n-p (concat "Compile "
1763 filename "? ")))))
1764 (progn
1765 (if (and noninteractive (not byte-compile-verbose))
1766 (message "Compiling %s..." filename))
1767 (byte-compile-file filename load))
1768 (when load
1769 (load (if (file-exists-p dest) dest filename)))
1770 'no-byte-compile)))
1772 (defvar byte-compile-level 0 ; bug#13787
1773 "Depth of a recursive byte compilation.")
1775 ;;;###autoload
1776 (defun byte-compile-file (filename &optional load)
1777 "Compile a file of Lisp code named FILENAME into a file of byte code.
1778 The output file's name is generated by passing FILENAME to the
1779 function `byte-compile-dest-file' (which see).
1780 With prefix arg (noninteractively: 2nd arg), LOAD the file after compiling.
1781 The value is non-nil if there were no errors, nil if errors."
1782 ;; (interactive "fByte compile file: \nP")
1783 (interactive
1784 (let ((file buffer-file-name)
1785 (file-dir nil))
1786 (and file
1787 (derived-mode-p 'emacs-lisp-mode)
1788 (setq file-dir (file-name-directory file)))
1789 (list (read-file-name (if current-prefix-arg
1790 "Byte compile and load file: "
1791 "Byte compile file: ")
1792 file-dir buffer-file-name nil)
1793 current-prefix-arg)))
1794 ;; Expand now so we get the current buffer's defaults
1795 (setq filename (expand-file-name filename))
1797 ;; If we're compiling a file that's in a buffer and is modified, offer
1798 ;; to save it first.
1799 (or noninteractive
1800 (let ((b (get-file-buffer (expand-file-name filename))))
1801 (if (and b (buffer-modified-p b)
1802 (y-or-n-p (format "Save buffer %s first? " (buffer-name b))))
1803 (with-current-buffer b (save-buffer)))))
1805 ;; Force logging of the file name for each file compiled.
1806 (setq byte-compile-last-logged-file nil)
1807 (let ((byte-compile-current-file filename)
1808 (byte-compile-current-group nil)
1809 (set-auto-coding-for-load t)
1810 target-file input-buffer output-buffer
1811 byte-compile-dest-file)
1812 (setq target-file (byte-compile-dest-file filename))
1813 (setq byte-compile-dest-file target-file)
1814 (with-current-buffer
1815 ;; It would be cleaner to use a temp buffer, but if there was
1816 ;; an error, we leave this buffer around for diagnostics.
1817 ;; Its name is documented in the lispref.
1818 (setq input-buffer (get-buffer-create
1819 (concat " *Compiler Input*"
1820 (if (zerop byte-compile-level) ""
1821 (format "-%s" byte-compile-level)))))
1822 (erase-buffer)
1823 (setq buffer-file-coding-system nil)
1824 ;; Always compile an Emacs Lisp file as multibyte
1825 ;; unless the file itself forces unibyte with -*-coding: raw-text;-*-
1826 (set-buffer-multibyte t)
1827 (insert-file-contents filename)
1828 ;; Mimic the way after-insert-file-set-coding can make the
1829 ;; buffer unibyte when visiting this file.
1830 (when (or (eq last-coding-system-used 'no-conversion)
1831 (eq (coding-system-type last-coding-system-used) 5))
1832 ;; For coding systems no-conversion and raw-text...,
1833 ;; edit the buffer as unibyte.
1834 (set-buffer-multibyte nil))
1835 ;; Run hooks including the uncompression hook.
1836 ;; If they change the file name, then change it for the output also.
1837 (let ((buffer-file-name filename)
1838 (dmm (default-value 'major-mode))
1839 ;; Ignore unsafe local variables.
1840 ;; We only care about a few of them for our purposes.
1841 (enable-local-variables :safe)
1842 (enable-local-eval nil))
1843 (unwind-protect
1844 (progn
1845 (setq-default major-mode 'emacs-lisp-mode)
1846 ;; Arg of t means don't alter enable-local-variables.
1847 (delay-mode-hooks (normal-mode t)))
1848 (setq-default major-mode dmm))
1849 ;; There may be a file local variable setting (bug#10419).
1850 (setq buffer-read-only nil
1851 filename buffer-file-name))
1852 ;; Don't inherit lexical-binding from caller (bug#12938).
1853 (unless (local-variable-p 'lexical-binding)
1854 (setq-local lexical-binding nil))
1855 ;; Set the default directory, in case an eval-when-compile uses it.
1856 (setq default-directory (file-name-directory filename)))
1857 ;; Check if the file's local variables explicitly specify not to
1858 ;; compile this file.
1859 (if (with-current-buffer input-buffer no-byte-compile)
1860 (progn
1861 ;; (message "%s not compiled because of `no-byte-compile: %s'"
1862 ;; (byte-compile-abbreviate-file filename)
1863 ;; (with-current-buffer input-buffer no-byte-compile))
1864 (when (file-exists-p target-file)
1865 (message "%s deleted because of `no-byte-compile: %s'"
1866 (byte-compile-abbreviate-file target-file)
1867 (buffer-local-value 'no-byte-compile input-buffer))
1868 (condition-case nil (delete-file target-file) (error nil)))
1869 ;; We successfully didn't compile this file.
1870 'no-byte-compile)
1871 (when byte-compile-verbose
1872 (message "Compiling %s..." filename))
1873 (setq byte-compiler-error-flag nil)
1874 ;; It is important that input-buffer not be current at this call,
1875 ;; so that the value of point set in input-buffer
1876 ;; within byte-compile-from-buffer lingers in that buffer.
1877 (setq output-buffer
1878 (save-current-buffer
1879 (let ((byte-compile-level (1+ byte-compile-level)))
1880 (byte-compile-from-buffer input-buffer))))
1881 (if byte-compiler-error-flag
1883 (when byte-compile-verbose
1884 (message "Compiling %s...done" filename))
1885 (kill-buffer input-buffer)
1886 (with-current-buffer output-buffer
1887 (goto-char (point-max))
1888 (insert "\n") ; aaah, unix.
1889 (if (file-writable-p target-file)
1890 ;; We must disable any code conversion here.
1891 (let* ((coding-system-for-write 'no-conversion)
1892 ;; Write to a tempfile so that if another Emacs
1893 ;; process is trying to load target-file (eg in a
1894 ;; parallel bootstrap), it does not risk getting a
1895 ;; half-finished file. (Bug#4196)
1896 (tempfile (make-temp-name target-file))
1897 (kill-emacs-hook
1898 (cons (lambda () (ignore-errors (delete-file tempfile)))
1899 kill-emacs-hook)))
1900 (write-region (point-min) (point-max) tempfile nil 1)
1901 ;; This has the intentional side effect that any
1902 ;; hard-links to target-file continue to
1903 ;; point to the old file (this makes it possible
1904 ;; for installed files to share disk space with
1905 ;; the build tree, without causing problems when
1906 ;; emacs-lisp files in the build tree are
1907 ;; recompiled). Previously this was accomplished by
1908 ;; deleting target-file before writing it.
1909 (rename-file tempfile target-file t)
1910 (or noninteractive (message "Wrote %s" target-file)))
1911 ;; This is just to give a better error message than write-region
1912 (let ((exists (file-exists-p target-file)))
1913 (signal (if exists 'file-error 'file-missing)
1914 (list "Opening output file"
1915 (if exists
1916 "Cannot overwrite file"
1917 "Directory not writable or nonexistent")
1918 target-file))))
1919 (kill-buffer (current-buffer)))
1920 (if (and byte-compile-generate-call-tree
1921 (or (eq t byte-compile-generate-call-tree)
1922 (y-or-n-p (format "Report call tree for %s? "
1923 filename))))
1924 (save-excursion
1925 (display-call-tree filename)))
1926 (if load
1927 (load target-file))
1928 t))))
1930 ;;; compiling a single function
1931 ;;;###autoload
1932 (defun compile-defun (&optional arg)
1933 "Compile and evaluate the current top-level form.
1934 Print the result in the echo area.
1935 With argument ARG, insert value in current buffer after the form."
1936 (interactive "P")
1937 (save-excursion
1938 (end-of-defun)
1939 (beginning-of-defun)
1940 (let* ((byte-compile-current-file nil)
1941 (byte-compile-current-buffer (current-buffer))
1942 (byte-compile-read-position (point))
1943 (byte-compile-last-position byte-compile-read-position)
1944 (byte-compile-last-warned-form 'nothing)
1945 (value (eval
1946 (let ((read-with-symbol-positions (current-buffer))
1947 (read-symbol-positions-list nil))
1948 (displaying-byte-compile-warnings
1949 (byte-compile-sexp
1950 (eval-sexp-add-defvars
1951 (read (current-buffer))
1952 byte-compile-read-position))))
1953 lexical-binding)))
1954 (cond (arg
1955 (message "Compiling from buffer... done.")
1956 (prin1 value (current-buffer))
1957 (insert "\n"))
1958 ((message "%s" (prin1-to-string value)))))))
1960 (defun byte-compile-from-buffer (inbuffer)
1961 (let ((byte-compile-current-buffer inbuffer)
1962 (byte-compile-read-position nil)
1963 (byte-compile-last-position nil)
1964 ;; Prevent truncation of flonums and lists as we read and print them
1965 (float-output-format nil)
1966 (case-fold-search nil)
1967 (print-length nil)
1968 (print-level nil)
1969 ;; Prevent edebug from interfering when we compile
1970 ;; and put the output into a file.
1971 ;; (edebug-all-defs nil)
1972 ;; (edebug-all-forms nil)
1973 ;; Simulate entry to byte-compile-top-level
1974 (byte-compile-jump-tables nil)
1975 (byte-compile-constants nil)
1976 (byte-compile-variables nil)
1977 (byte-compile-tag-number 0)
1978 (byte-compile-depth 0)
1979 (byte-compile-maxdepth 0)
1980 (byte-compile-output nil)
1981 ;; This allows us to get the positions of symbols read; it's
1982 ;; new in Emacs 22.1.
1983 (read-with-symbol-positions inbuffer)
1984 (read-symbol-positions-list nil)
1985 ;; #### This is bound in b-c-close-variables.
1986 ;; (byte-compile-warnings byte-compile-warnings)
1988 (byte-compile-close-variables
1989 (with-current-buffer
1990 (setq byte-compile--outbuffer
1991 (get-buffer-create
1992 (concat " *Compiler Output*"
1993 (if (<= byte-compile-level 1) ""
1994 (format "-%s" (1- byte-compile-level))))))
1995 (set-buffer-multibyte t)
1996 (erase-buffer)
1997 ;; (emacs-lisp-mode)
1998 (setq case-fold-search nil))
1999 (displaying-byte-compile-warnings
2000 (with-current-buffer inbuffer
2001 (and byte-compile-current-file
2002 (byte-compile-insert-header byte-compile-current-file
2003 byte-compile--outbuffer))
2004 (goto-char (point-min))
2005 ;; Should we always do this? When calling multiple files, it
2006 ;; would be useful to delay this warning until all have been
2007 ;; compiled. A: Yes! b-c-u-f might contain dross from a
2008 ;; previous byte-compile.
2009 (setq byte-compile-unresolved-functions nil)
2010 (setq byte-compile-noruntime-functions nil)
2011 (setq byte-compile-new-defuns nil)
2013 ;; Compile the forms from the input buffer.
2014 (while (progn
2015 (while (progn (skip-chars-forward " \t\n\^l")
2016 (= (following-char) ?\;))
2017 (forward-line 1))
2018 (not (eobp)))
2019 (setq byte-compile-read-position (point)
2020 byte-compile-last-position byte-compile-read-position)
2021 (let* ((lread--old-style-backquotes nil)
2022 (lread--unescaped-character-literals nil)
2023 (form (read inbuffer)))
2024 ;; Warn about the use of old-style backquotes.
2025 (when lread--old-style-backquotes
2026 (byte-compile-warn "!! The file uses old-style backquotes !!
2027 This functionality has been obsolete for more than 10 years already
2028 and will be removed soon. See (elisp)Backquote in the manual."))
2029 (when lread--unescaped-character-literals
2030 (byte-compile-warn
2031 "unescaped character literals %s detected!"
2032 (mapconcat (lambda (char) (format "`?%c'" char))
2033 (sort lread--unescaped-character-literals #'<)
2034 ", ")))
2035 (byte-compile-toplevel-file-form form)))
2036 ;; Compile pending forms at end of file.
2037 (byte-compile-flush-pending)
2038 ;; Make warnings about unresolved functions
2039 ;; give the end of the file as their position.
2040 (setq byte-compile-last-position (point-max))
2041 (byte-compile-warn-about-unresolved-functions))
2042 ;; Fix up the header at the front of the output
2043 ;; if the buffer contains multibyte characters.
2044 (and byte-compile-current-file
2045 (with-current-buffer byte-compile--outbuffer
2046 (byte-compile-fix-header byte-compile-current-file))))
2047 byte-compile--outbuffer)))
2049 (defun byte-compile-fix-header (_filename)
2050 "If the current buffer has any multibyte characters, insert a version test."
2051 (when (< (point-max) (position-bytes (point-max)))
2052 (goto-char (point-min))
2053 ;; Find the comment that describes the version condition.
2054 (search-forward "\n;;; This file uses")
2055 (narrow-to-region (line-beginning-position) (point-max))
2056 ;; Find the first line of ballast semicolons.
2057 (search-forward ";;;;;;;;;;")
2058 (beginning-of-line)
2059 (narrow-to-region (point-min) (point))
2060 (let ((old-header-end (point))
2061 (minimum-version "23")
2062 delta)
2063 (delete-region (point-min) (point-max))
2064 (insert
2065 ";;; This file contains utf-8 non-ASCII characters,\n"
2066 ";;; and so cannot be loaded into Emacs 22 or earlier.\n"
2067 ;; Have to check if emacs-version is bound so that this works
2068 ;; in files loaded early in loadup.el.
2069 "(and (boundp 'emacs-version)\n"
2070 ;; If there is a name at the end of emacs-version,
2071 ;; don't try to check the version number.
2072 " (< (aref emacs-version (1- (length emacs-version))) ?A)\n"
2073 (format " (string-lessp emacs-version \"%s\")\n" minimum-version)
2074 ;; Because the header must fit in a fixed width, we cannot
2075 ;; insert arbitrary-length file names (Bug#11585).
2076 " (error \"`%s' was compiled for "
2077 (format "Emacs %s or later\" #$))\n\n" minimum-version))
2078 ;; Now compensate for any change in size, to make sure all
2079 ;; positions in the file remain valid.
2080 (setq delta (- (point-max) old-header-end))
2081 (goto-char (point-max))
2082 (widen)
2083 (delete-char delta))))
2085 (defun byte-compile-insert-header (_filename outbuffer)
2086 "Insert a header at the start of OUTBUFFER.
2087 Call from the source buffer."
2088 (let ((dynamic-docstrings byte-compile-dynamic-docstrings)
2089 (dynamic byte-compile-dynamic)
2090 (optimize byte-optimize))
2091 (with-current-buffer outbuffer
2092 (goto-char (point-min))
2093 ;; The magic number of .elc files is ";ELC", or 0x3B454C43. After
2094 ;; that is the file-format version number (18, 19, 20, or 23) as a
2095 ;; byte, followed by some nulls. The primary motivation for doing
2096 ;; this is to get some binary characters up in the first line of
2097 ;; the file so that `diff' will simply say "Binary files differ"
2098 ;; instead of actually doing a diff of two .elc files. An extra
2099 ;; benefit is that you can add this to /etc/magic:
2100 ;; 0 string ;ELC GNU Emacs Lisp compiled file,
2101 ;; >4 byte x version %d
2102 (insert
2103 ";ELC" 23 "\000\000\000\n"
2104 ";;; Compiled\n"
2105 ";;; in Emacs version " emacs-version "\n"
2106 ";;; with"
2107 (cond
2108 ((eq optimize 'source) " source-level optimization only")
2109 ((eq optimize 'byte) " byte-level optimization only")
2110 (optimize " all optimizations")
2111 (t "out optimization"))
2112 ".\n"
2113 (if dynamic ";;; Function definitions are lazy-loaded.\n"
2115 "\n;;; This file uses "
2116 (if dynamic-docstrings
2117 "dynamic docstrings, first added in Emacs 19.29"
2118 "opcodes that do not exist in Emacs 18")
2119 ".\n\n"
2120 ;; Note that byte-compile-fix-header may change this.
2121 ";;; This file does not contain utf-8 non-ASCII characters,\n"
2122 ";;; and so can be loaded in Emacs versions earlier than 23.\n\n"
2123 ;; Insert semicolons as ballast, so that byte-compile-fix-header
2124 ;; can delete them so as to keep the buffer positions
2125 ;; constant for the actual compiled code.
2126 ";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;\n"
2127 ";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;\n\n"))))
2129 (defun byte-compile-output-file-form (form)
2130 ;; Write the given form to the output buffer, being careful of docstrings
2131 ;; in defvar, defvaralias, defconst, autoload and
2132 ;; custom-declare-variable because make-docfile is so amazingly stupid.
2133 ;; defalias calls are output directly by byte-compile-file-form-defmumble;
2134 ;; it does not pay to first build the defalias in defmumble and then parse
2135 ;; it here.
2136 (let ((print-escape-newlines t)
2137 (print-length nil)
2138 (print-level nil)
2139 (print-quoted t)
2140 (print-gensym t)
2141 (print-circle ; Handle circular data structures.
2142 (not byte-compile-disable-print-circle)))
2143 (if (and (memq (car-safe form) '(defvar defvaralias defconst
2144 autoload custom-declare-variable))
2145 (stringp (nth 3 form)))
2146 (byte-compile-output-docform nil nil '("\n(" 3 ")") form nil
2147 (memq (car form)
2148 '(defvaralias autoload
2149 custom-declare-variable)))
2150 (princ "\n" byte-compile--outbuffer)
2151 (prin1 form byte-compile--outbuffer)
2152 nil)))
2154 (defvar byte-compile--for-effect)
2156 (defun byte-compile-output-docform (preface name info form specindex quoted)
2157 "Print a form with a doc string. INFO is (prefix doc-index postfix).
2158 If PREFACE and NAME are non-nil, print them too,
2159 before INFO and the FORM but after the doc string itself.
2160 If SPECINDEX is non-nil, it is the index in FORM
2161 of the function bytecode string. In that case,
2162 we output that argument and the following argument
2163 \(the constants vector) together, for lazy loading.
2164 QUOTED says that we have to put a quote before the
2165 list that represents a doc string reference.
2166 `defvaralias', `autoload' and `custom-declare-variable' need that."
2167 ;; We need to examine byte-compile-dynamic-docstrings
2168 ;; in the input buffer (now current), not in the output buffer.
2169 (let ((dynamic-docstrings byte-compile-dynamic-docstrings))
2170 (with-current-buffer byte-compile--outbuffer
2171 (let (position)
2173 ;; Insert the doc string, and make it a comment with #@LENGTH.
2174 (and (>= (nth 1 info) 0)
2175 dynamic-docstrings
2176 (progn
2177 ;; Make the doc string start at beginning of line
2178 ;; for make-docfile's sake.
2179 (insert "\n")
2180 (setq position
2181 (byte-compile-output-as-comment
2182 (nth (nth 1 info) form) nil))
2183 ;; If the doc string starts with * (a user variable),
2184 ;; negate POSITION.
2185 (if (and (stringp (nth (nth 1 info) form))
2186 (> (length (nth (nth 1 info) form)) 0)
2187 (eq (aref (nth (nth 1 info) form) 0) ?*))
2188 (setq position (- position)))))
2190 (let ((print-continuous-numbering t)
2191 print-number-table
2192 (index 0)
2193 ;; FIXME: The bindings below are only needed for when we're
2194 ;; called from ...-defmumble.
2195 (print-escape-newlines t)
2196 (print-length nil)
2197 (print-level nil)
2198 (print-quoted t)
2199 (print-gensym t)
2200 (print-circle ; Handle circular data structures.
2201 (not byte-compile-disable-print-circle)))
2202 (if preface
2203 (progn
2204 ;; FIXME: We don't handle uninterned names correctly.
2205 ;; E.g. if cl-define-compiler-macro uses uninterned name we get:
2206 ;; (defalias '#1=#:foo--cmacro #[514 ...])
2207 ;; (put 'foo 'compiler-macro '#:foo--cmacro)
2208 (insert preface)
2209 (prin1 name byte-compile--outbuffer)))
2210 (insert (car info))
2211 (prin1 (car form) byte-compile--outbuffer)
2212 (while (setq form (cdr form))
2213 (setq index (1+ index))
2214 (insert " ")
2215 (cond ((and (numberp specindex) (= index specindex)
2216 ;; Don't handle the definition dynamically
2217 ;; if it refers (or might refer)
2218 ;; to objects already output
2219 ;; (for instance, gensyms in the arg list).
2220 (let (non-nil)
2221 (when (hash-table-p print-number-table)
2222 (maphash (lambda (_k v) (if v (setq non-nil t)))
2223 print-number-table))
2224 (not non-nil)))
2225 ;; Output the byte code and constants specially
2226 ;; for lazy dynamic loading.
2227 (let ((position
2228 (byte-compile-output-as-comment
2229 (cons (car form) (nth 1 form))
2230 t)))
2231 (princ (format "(#$ . %d) nil" position)
2232 byte-compile--outbuffer)
2233 (setq form (cdr form))
2234 (setq index (1+ index))))
2235 ((= index (nth 1 info))
2236 (if position
2237 (princ (format (if quoted "'(#$ . %d)" "(#$ . %d)")
2238 position)
2239 byte-compile--outbuffer)
2240 (let ((print-escape-newlines nil))
2241 (goto-char (prog1 (1+ (point))
2242 (prin1 (car form)
2243 byte-compile--outbuffer)))
2244 (insert "\\\n")
2245 (goto-char (point-max)))))
2247 (prin1 (car form) byte-compile--outbuffer)))))
2248 (insert (nth 2 info)))))
2249 nil)
2251 (defun byte-compile-keep-pending (form &optional handler)
2252 (if (memq byte-optimize '(t source))
2253 (setq form (byte-optimize-form form t)))
2254 (if handler
2255 (let ((byte-compile--for-effect t))
2256 ;; To avoid consing up monstrously large forms at load time, we split
2257 ;; the output regularly.
2258 (and (memq (car-safe form) '(fset defalias))
2259 (nthcdr 300 byte-compile-output)
2260 (byte-compile-flush-pending))
2261 (funcall handler form)
2262 (if byte-compile--for-effect
2263 (byte-compile-discard)))
2264 (byte-compile-form form t))
2265 nil)
2267 (defun byte-compile-flush-pending ()
2268 (if byte-compile-output
2269 (let ((form (byte-compile-out-toplevel t 'file)))
2270 (cond ((eq (car-safe form) 'progn)
2271 (mapc 'byte-compile-output-file-form (cdr form)))
2272 (form
2273 (byte-compile-output-file-form form)))
2274 (setq byte-compile-constants nil
2275 byte-compile-variables nil
2276 byte-compile-depth 0
2277 byte-compile-maxdepth 0
2278 byte-compile-output nil
2279 byte-compile-jump-tables nil))))
2281 (defvar byte-compile-force-lexical-warnings nil)
2283 (defun byte-compile-preprocess (form &optional _for-effect)
2284 (setq form (macroexpand-all form byte-compile-macro-environment))
2285 ;; FIXME: We should run byte-optimize-form here, but it currently does not
2286 ;; recurse through all the code, so we'd have to fix this first.
2287 ;; Maybe a good fix would be to merge byte-optimize-form into
2288 ;; macroexpand-all.
2289 ;; (if (memq byte-optimize '(t source))
2290 ;; (setq form (byte-optimize-form form for-effect)))
2291 (cond
2292 (lexical-binding (cconv-closure-convert form))
2293 (byte-compile-force-lexical-warnings (cconv-warnings-only form))
2294 (t form)))
2296 ;; byte-hunk-handlers cannot call this!
2297 (defun byte-compile-toplevel-file-form (top-level-form)
2298 (byte-compile-recurse-toplevel
2299 top-level-form
2300 (lambda (form)
2301 (let ((byte-compile-current-form nil)) ; close over this for warnings.
2302 (byte-compile-file-form (byte-compile-preprocess form t))))))
2304 ;; byte-hunk-handlers can call this.
2305 (defun byte-compile-file-form (form)
2306 (let (handler)
2307 (cond ((and (consp form)
2308 (symbolp (car form))
2309 (setq handler (get (car form) 'byte-hunk-handler)))
2310 (cond ((setq form (funcall handler form))
2311 (byte-compile-flush-pending)
2312 (byte-compile-output-file-form form))))
2314 (byte-compile-keep-pending form)))))
2316 ;; Functions and variables with doc strings must be output separately,
2317 ;; so make-docfile can recognize them. Most other things can be output
2318 ;; as byte-code.
2320 (put 'autoload 'byte-hunk-handler 'byte-compile-file-form-autoload)
2321 (defun byte-compile-file-form-autoload (form)
2322 (and (let ((form form))
2323 (while (if (setq form (cdr form)) (macroexp-const-p (car form))))
2324 (null form)) ;Constants only
2325 (memq (eval (nth 5 form)) '(t macro)) ;Macro
2326 (eval form)) ;Define the autoload.
2327 ;; Avoid undefined function warnings for the autoload.
2328 (pcase (nth 1 form)
2329 (`',(and (pred symbolp) funsym)
2330 ;; Don't add it if it's already defined. Otherwise, it might
2331 ;; hide the actual definition. However, do remove any entry from
2332 ;; byte-compile-noruntime-functions, in case we have an autoload
2333 ;; of foo-func following an (eval-when-compile (require 'foo)).
2334 (unless (fboundp funsym)
2335 (push (cons funsym (cons 'autoload (cdr (cdr form))))
2336 byte-compile-function-environment))
2337 ;; If an autoload occurs _before_ the first call to a function,
2338 ;; byte-compile-callargs-warn does not add an entry to
2339 ;; byte-compile-unresolved-functions. Here we mimic the logic
2340 ;; of byte-compile-callargs-warn so as not to warn if the
2341 ;; autoload comes _after_ the function call.
2342 ;; Alternatively, similar logic could go in
2343 ;; byte-compile-warn-about-unresolved-functions.
2344 (if (memq funsym byte-compile-noruntime-functions)
2345 (setq byte-compile-noruntime-functions
2346 (delq funsym byte-compile-noruntime-functions))
2347 (setq byte-compile-unresolved-functions
2348 (delq (assq funsym byte-compile-unresolved-functions)
2349 byte-compile-unresolved-functions)))))
2350 (if (stringp (nth 3 form))
2351 form
2352 ;; No doc string, so we can compile this as a normal form.
2353 (byte-compile-keep-pending form 'byte-compile-normal-call)))
2355 (put 'defvar 'byte-hunk-handler 'byte-compile-file-form-defvar)
2356 (put 'defconst 'byte-hunk-handler 'byte-compile-file-form-defvar)
2358 (defun byte-compile--declare-var (sym)
2359 (when (and (symbolp sym)
2360 (not (string-match "[-*/:$]" (symbol-name sym)))
2361 (byte-compile-warning-enabled-p 'lexical))
2362 (byte-compile-warn "global/dynamic var `%s' lacks a prefix"
2363 sym))
2364 (when (memq sym byte-compile-lexical-variables)
2365 (setq byte-compile-lexical-variables
2366 (delq sym byte-compile-lexical-variables))
2367 (byte-compile-warn "Variable `%S' declared after its first use" sym))
2368 (push sym byte-compile-bound-variables))
2370 (defun byte-compile-file-form-defvar (form)
2371 (let ((sym (nth 1 form)))
2372 (byte-compile--declare-var sym)
2373 (if (eq (car form) 'defconst)
2374 (push sym byte-compile-const-variables)))
2375 (if (and (null (cddr form)) ;No `value' provided.
2376 (eq (car form) 'defvar)) ;Just a declaration.
2378 (cond ((consp (nth 2 form))
2379 (setq form (copy-sequence form))
2380 (setcar (cdr (cdr form))
2381 (byte-compile-top-level (nth 2 form) nil 'file))))
2382 form))
2384 (put 'define-abbrev-table 'byte-hunk-handler
2385 'byte-compile-file-form-defvar-function)
2386 (put 'defvaralias 'byte-hunk-handler 'byte-compile-file-form-defvar-function)
2388 (defun byte-compile-file-form-defvar-function (form)
2389 (pcase-let (((or `',name (let name nil)) (nth 1 form)))
2390 (if name (byte-compile--declare-var name)))
2391 (byte-compile-keep-pending form))
2393 (put 'custom-declare-variable 'byte-hunk-handler
2394 'byte-compile-file-form-custom-declare-variable)
2395 (defun byte-compile-file-form-custom-declare-variable (form)
2396 (when (byte-compile-warning-enabled-p 'callargs)
2397 (byte-compile-nogroup-warn form))
2398 (byte-compile-file-form-defvar-function form))
2400 (put 'require 'byte-hunk-handler 'byte-compile-file-form-require)
2401 (defun byte-compile-file-form-require (form)
2402 (let ((args (mapcar 'eval (cdr form)))
2403 (hist-orig load-history)
2404 hist-new prov-cons)
2405 (apply 'require args)
2407 ;; Record the functions defined by the require in `byte-compile-new-defuns'.
2408 (setq hist-new load-history)
2409 (setq prov-cons (cons 'provide (car args)))
2410 (while (and hist-new
2411 (not (member prov-cons (car hist-new))))
2412 (setq hist-new (cdr hist-new)))
2413 (when hist-new
2414 (dolist (x (car hist-new))
2415 (when (and (consp x)
2416 (memq (car x) '(defun t)))
2417 (push (cdr x) byte-compile-new-defuns))))
2419 (when (byte-compile-warning-enabled-p 'cl-functions)
2420 ;; Detect (require 'cl) in a way that works even if cl is already loaded.
2421 (if (member (car args) '("cl" cl))
2422 (progn
2423 (byte-compile-warn "cl package required at runtime")
2424 (byte-compile-disable-warning 'cl-functions))
2425 ;; We may have required something that causes cl to be loaded, eg
2426 ;; the uncompiled version of a file that requires cl when compiling.
2427 (setq hist-new load-history)
2428 (while (and (not byte-compile-cl-functions)
2429 hist-new (not (eq hist-new hist-orig)))
2430 (and (byte-compile-cl-file-p (car (pop hist-new)))
2431 (byte-compile-find-cl-functions))))))
2432 (byte-compile-keep-pending form 'byte-compile-normal-call))
2434 (put 'progn 'byte-hunk-handler 'byte-compile-file-form-progn)
2435 (put 'prog1 'byte-hunk-handler 'byte-compile-file-form-progn)
2436 (put 'prog2 'byte-hunk-handler 'byte-compile-file-form-progn)
2437 (defun byte-compile-file-form-progn (form)
2438 (mapc 'byte-compile-file-form (cdr form))
2439 ;; Return nil so the forms are not output twice.
2440 nil)
2442 (put 'with-no-warnings 'byte-hunk-handler
2443 'byte-compile-file-form-with-no-warnings)
2444 (defun byte-compile-file-form-with-no-warnings (form)
2445 ;; cf byte-compile-file-form-progn.
2446 (let (byte-compile-warnings)
2447 (mapc 'byte-compile-file-form (cdr form))
2448 nil))
2450 ;; This handler is not necessary, but it makes the output from dont-compile
2451 ;; and similar macros cleaner.
2452 (put 'eval 'byte-hunk-handler 'byte-compile-file-form-eval)
2453 (defun byte-compile-file-form-eval (form)
2454 (if (eq (car-safe (nth 1 form)) 'quote)
2455 (nth 1 (nth 1 form))
2456 (byte-compile-keep-pending form)))
2458 (defun byte-compile-file-form-defmumble (name macro arglist body rest)
2459 "Process a `defalias' for NAME.
2460 If MACRO is non-nil, the definition is known to be a macro.
2461 ARGLIST is the list of arguments, if it was recognized or t otherwise.
2462 BODY of the definition, or t if not recognized.
2463 Return non-nil if everything went as planned, or nil to imply that it decided
2464 not to take responsibility for the actual compilation of the code."
2465 (let* ((this-kind (if macro 'byte-compile-macro-environment
2466 'byte-compile-function-environment))
2467 (that-kind (if macro 'byte-compile-function-environment
2468 'byte-compile-macro-environment))
2469 (this-one (assq name (symbol-value this-kind)))
2470 (that-one (assq name (symbol-value that-kind)))
2471 (byte-compile-current-form name)) ; For warnings.
2473 (byte-compile-set-symbol-position name)
2474 (push name byte-compile-new-defuns)
2475 ;; When a function or macro is defined, add it to the call tree so that
2476 ;; we can tell when functions are not used.
2477 (if byte-compile-generate-call-tree
2478 (or (assq name byte-compile-call-tree)
2479 (setq byte-compile-call-tree
2480 (cons (list name nil nil) byte-compile-call-tree))))
2482 (if (byte-compile-warning-enabled-p 'redefine)
2483 (byte-compile-arglist-warn name arglist macro))
2485 (if byte-compile-verbose
2486 (message "Compiling %s... (%s)"
2487 (or byte-compile-current-file "") name))
2488 (cond ((not (or macro (listp body)))
2489 ;; We do not know positively if the definition is a macro
2490 ;; or a function, so we shouldn't emit warnings.
2491 ;; This also silences "multiple definition" warnings for defmethods.
2492 nil)
2493 (that-one
2494 (if (and (byte-compile-warning-enabled-p 'redefine)
2495 ;; Don't warn when compiling the stubs in byte-run...
2496 (not (assq name byte-compile-initial-macro-environment)))
2497 (byte-compile-warn
2498 "`%s' defined multiple times, as both function and macro"
2499 name))
2500 (setcdr that-one nil))
2501 (this-one
2502 (when (and (byte-compile-warning-enabled-p 'redefine)
2503 ;; Hack: Don't warn when compiling the magic internal
2504 ;; byte-compiler macros in byte-run.el...
2505 (not (assq name byte-compile-initial-macro-environment)))
2506 (byte-compile-warn "%s `%s' defined multiple times in this file"
2507 (if macro "macro" "function")
2508 name)))
2509 ((eq (car-safe (symbol-function name))
2510 (if macro 'lambda 'macro))
2511 (when (byte-compile-warning-enabled-p 'redefine)
2512 (byte-compile-warn "%s `%s' being redefined as a %s"
2513 (if macro "function" "macro")
2514 name
2515 (if macro "macro" "function")))
2516 ;; Shadow existing definition.
2517 (set this-kind
2518 (cons (cons name nil)
2519 (symbol-value this-kind))))
2522 (when (and (listp body)
2523 (stringp (car body))
2524 (symbolp (car-safe (cdr-safe body)))
2525 (car-safe (cdr-safe body))
2526 (stringp (car-safe (cdr-safe (cdr-safe body)))))
2527 ;; FIXME: We've done that already just above, so this looks wrong!
2528 ;;(byte-compile-set-symbol-position name)
2529 (byte-compile-warn "probable `\"' without `\\' in doc string of %s"
2530 name))
2532 (if (not (listp body))
2533 ;; The precise definition requires evaluation to find out, so it
2534 ;; will only be known at runtime.
2535 ;; For a macro, that means we can't use that macro in the same file.
2536 (progn
2537 (unless macro
2538 (push (cons name (if (listp arglist) `(declared ,arglist) t))
2539 byte-compile-function-environment))
2540 ;; Tell the caller that we didn't compile it yet.
2541 nil)
2543 (let* ((code (byte-compile-lambda (cons arglist body) t)))
2544 (if this-one
2545 ;; A definition in b-c-initial-m-e should always take precedence
2546 ;; during compilation, so don't let it be redefined. (Bug#8647)
2547 (or (and macro
2548 (assq name byte-compile-initial-macro-environment))
2549 (setcdr this-one code))
2550 (set this-kind
2551 (cons (cons name code)
2552 (symbol-value this-kind))))
2554 (if rest
2555 ;; There are additional args to `defalias' (like maybe a docstring)
2556 ;; that the code below can't handle: punt!
2558 ;; Otherwise, we have a bona-fide defun/defmacro definition, and use
2559 ;; special code to allow dynamic docstrings and byte-code.
2560 (byte-compile-flush-pending)
2561 (let ((index
2562 ;; If there's no doc string, provide -1 as the "doc string
2563 ;; index" so that no element will be treated as a doc string.
2564 (if (not (stringp (car body))) -1 4)))
2565 ;; Output the form by hand, that's much simpler than having
2566 ;; b-c-output-file-form analyze the defalias.
2567 (byte-compile-output-docform
2568 "\n(defalias '"
2569 name
2570 (if macro `(" '(macro . #[" ,index "])") `(" #[" ,index "]"))
2571 (append code nil) ; Turn byte-code-function-p into list.
2572 (and (atom code) byte-compile-dynamic
2574 nil))
2575 (princ ")" byte-compile--outbuffer)
2576 t)))))
2578 (defun byte-compile-output-as-comment (exp quoted)
2579 "Print Lisp object EXP in the output file, inside a comment,
2580 and return the file (byte) position it will have.
2581 If QUOTED is non-nil, print with quoting; otherwise, print without quoting."
2582 (with-current-buffer byte-compile--outbuffer
2583 (let ((position (point)))
2585 ;; Insert EXP, and make it a comment with #@LENGTH.
2586 (insert " ")
2587 (if quoted
2588 (prin1 exp byte-compile--outbuffer)
2589 (princ exp byte-compile--outbuffer))
2590 (goto-char position)
2591 ;; Quote certain special characters as needed.
2592 ;; get_doc_string in doc.c does the unquoting.
2593 (while (search-forward "\^A" nil t)
2594 (replace-match "\^A\^A" t t))
2595 (goto-char position)
2596 (while (search-forward "\000" nil t)
2597 (replace-match "\^A0" t t))
2598 (goto-char position)
2599 (while (search-forward "\037" nil t)
2600 (replace-match "\^A_" t t))
2601 (goto-char (point-max))
2602 (insert "\037")
2603 (goto-char position)
2604 (insert "#@" (format "%d" (- (position-bytes (point-max))
2605 (position-bytes position))))
2607 ;; Save the file position of the object.
2608 ;; Note we add 1 to skip the space that we inserted before the actual doc
2609 ;; string, and subtract point-min to convert from an 1-origin Emacs
2610 ;; position to a file position.
2611 (prog1
2612 (- (position-bytes (point)) (point-min) -1)
2613 (goto-char (point-max))))))
2615 (defun byte-compile--reify-function (fun)
2616 "Return an expression which will evaluate to a function value FUN.
2617 FUN should be either a `lambda' value or a `closure' value."
2618 (pcase-let* (((or (and `(lambda ,args . ,body) (let env nil))
2619 `(closure ,env ,args . ,body))
2620 fun)
2621 (preamble nil)
2622 (renv ()))
2623 ;; Split docstring and `interactive' form from body.
2624 (when (stringp (car body))
2625 (push (pop body) preamble))
2626 (when (eq (car-safe (car body)) 'interactive)
2627 (push (pop body) preamble))
2628 ;; Turn the function's closed vars (if any) into local let bindings.
2629 (dolist (binding env)
2630 (cond
2631 ((consp binding)
2632 ;; We check shadowing by the args, so that the `let' can be moved
2633 ;; within the lambda, which can then be unfolded. FIXME: Some of those
2634 ;; bindings might be unused in `body'.
2635 (unless (memq (car binding) args) ;Shadowed.
2636 (push `(,(car binding) ',(cdr binding)) renv)))
2637 ((eq binding t))
2638 (t (push `(defvar ,binding) body))))
2639 (if (null renv)
2640 `(lambda ,args ,@preamble ,@body)
2641 `(lambda ,args ,@preamble (let ,(nreverse renv) ,@body)))))
2643 ;;;###autoload
2644 (defun byte-compile (form)
2645 "If FORM is a symbol, byte-compile its function definition.
2646 If FORM is a lambda or a macro, byte-compile it as a function."
2647 (displaying-byte-compile-warnings
2648 (byte-compile-close-variables
2649 (let* ((lexical-binding lexical-binding)
2650 (fun (if (symbolp form)
2651 (symbol-function form)
2652 form))
2653 (macro (eq (car-safe fun) 'macro)))
2654 (if macro
2655 (setq fun (cdr fun)))
2656 (cond
2657 ;; Up until Emacs-24.1, byte-compile silently did nothing when asked to
2658 ;; compile something invalid. So let's tune down the complaint from an
2659 ;; error to a simple message for the known case where signaling an error
2660 ;; causes problems.
2661 ((byte-code-function-p fun)
2662 (message "Function %s is already compiled"
2663 (if (symbolp form) form "provided"))
2664 fun)
2666 (when (or (symbolp form) (eq (car-safe fun) 'closure))
2667 ;; `fun' is a function *value*, so try to recover its corresponding
2668 ;; source code.
2669 (setq lexical-binding (eq (car fun) 'closure))
2670 (setq fun (byte-compile--reify-function fun)))
2671 ;; Expand macros.
2672 (setq fun (byte-compile-preprocess fun))
2673 (setq fun (byte-compile-top-level fun nil 'eval))
2674 (if macro (push 'macro fun))
2675 (if (symbolp form)
2676 (fset form fun)
2677 fun)))))))
2679 (defun byte-compile-sexp (sexp)
2680 "Compile and return SEXP."
2681 (displaying-byte-compile-warnings
2682 (byte-compile-close-variables
2683 (byte-compile-top-level (byte-compile-preprocess sexp)))))
2685 (defun byte-compile-check-lambda-list (list)
2686 "Check lambda-list LIST for errors."
2687 (let (vars)
2688 (while list
2689 (let ((arg (car list)))
2690 (when (symbolp arg)
2691 (byte-compile-set-symbol-position arg))
2692 (cond ((or (not (symbolp arg))
2693 (macroexp--const-symbol-p arg t))
2694 (error "Invalid lambda variable %s" arg))
2695 ((eq arg '&rest)
2696 (unless (cdr list)
2697 (error "&rest without variable name"))
2698 (when (cddr list)
2699 (error "Garbage following &rest VAR in lambda-list")))
2700 ((eq arg '&optional)
2701 (when (or (null (cdr list))
2702 (memq (cadr list) '(&optional &rest)))
2703 (error "Variable name missing after &optional"))
2704 (when (memq '&optional (cddr list))
2705 (error "Duplicate &optional")))
2706 ((memq arg vars)
2707 (byte-compile-warn "repeated variable %s in lambda-list" arg))
2709 (push arg vars))))
2710 (setq list (cdr list)))))
2713 (defun byte-compile-arglist-vars (arglist)
2714 "Return a list of the variables in the lambda argument list ARGLIST."
2715 (remq '&rest (remq '&optional arglist)))
2717 (defun byte-compile-make-lambda-lexenv (args)
2718 "Return a new lexical environment for a lambda expression FORM."
2719 (let* ((lexenv nil)
2720 (stackpos 0))
2721 ;; Add entries for each argument.
2722 (dolist (arg args)
2723 (push (cons arg stackpos) lexenv)
2724 (setq stackpos (1+ stackpos)))
2725 ;; Return the new lexical environment.
2726 lexenv))
2728 (defun byte-compile-make-args-desc (arglist)
2729 (let ((mandatory 0)
2730 nonrest (rest 0))
2731 (while (and arglist (not (memq (car arglist) '(&optional &rest))))
2732 (setq mandatory (1+ mandatory))
2733 (setq arglist (cdr arglist)))
2734 (setq nonrest mandatory)
2735 (when (eq (car arglist) '&optional)
2736 (setq arglist (cdr arglist))
2737 (while (and arglist (not (eq (car arglist) '&rest)))
2738 (setq nonrest (1+ nonrest))
2739 (setq arglist (cdr arglist))))
2740 (when arglist
2741 (setq rest 1))
2742 (if (> mandatory 127)
2743 (byte-compile-report-error "Too many (>127) mandatory arguments")
2744 (logior mandatory
2745 (lsh nonrest 8)
2746 (lsh rest 7)))))
2749 (defun byte-compile-lambda (fun &optional add-lambda reserved-csts)
2750 "Byte-compile a lambda-expression and return a valid function.
2751 The value is usually a compiled function but may be the original
2752 lambda-expression.
2753 When ADD-LAMBDA is non-nil, the symbol `lambda' is added as head
2754 of the list FUN and `byte-compile-set-symbol-position' is not called.
2755 Use this feature to avoid calling `byte-compile-set-symbol-position'
2756 for symbols generated by the byte compiler itself."
2757 (if add-lambda
2758 (setq fun (cons 'lambda fun))
2759 (unless (eq 'lambda (car-safe fun))
2760 (error "Not a lambda list: %S" fun))
2761 (byte-compile-set-symbol-position 'lambda))
2762 (byte-compile-check-lambda-list (nth 1 fun))
2763 (let* ((arglist (nth 1 fun))
2764 (arglistvars (byte-compile-arglist-vars arglist))
2765 (byte-compile-bound-variables
2766 (append (if (not lexical-binding) arglistvars)
2767 byte-compile-bound-variables))
2768 (body (cdr (cdr fun)))
2769 (doc (if (stringp (car body))
2770 (prog1 (car body)
2771 ;; Discard the doc string
2772 ;; unless it is the last element of the body.
2773 (if (cdr body)
2774 (setq body (cdr body))))))
2775 (int (assq 'interactive body)))
2776 ;; Process the interactive spec.
2777 (when int
2778 (byte-compile-set-symbol-position 'interactive)
2779 ;; Skip (interactive) if it is in front (the most usual location).
2780 (if (eq int (car body))
2781 (setq body (cdr body)))
2782 (cond ((consp (cdr int))
2783 (if (cdr (cdr int))
2784 (byte-compile-warn "malformed interactive spec: %s"
2785 (prin1-to-string int)))
2786 ;; If the interactive spec is a call to `list', don't
2787 ;; compile it, because `call-interactively' looks at the
2788 ;; args of `list'. Actually, compile it to get warnings,
2789 ;; but don't use the result.
2790 (let* ((form (nth 1 int))
2791 (newform (byte-compile-top-level form)))
2792 (while (memq (car-safe form) '(let let* progn save-excursion))
2793 (while (consp (cdr form))
2794 (setq form (cdr form)))
2795 (setq form (car form)))
2796 (if (and (eq (car-safe form) 'list)
2797 ;; The spec is evalled in callint.c in dynamic-scoping
2798 ;; mode, so just leaving the form unchanged would mean
2799 ;; it won't be eval'd in the right mode.
2800 (not lexical-binding))
2802 (setq int `(interactive ,newform)))))
2803 ((cdr int)
2804 (byte-compile-warn "malformed interactive spec: %s"
2805 (prin1-to-string int)))))
2806 ;; Process the body.
2807 (let ((compiled
2808 (byte-compile-top-level (cons 'progn body) nil 'lambda
2809 ;; If doing lexical binding, push a new
2810 ;; lexical environment containing just the
2811 ;; args (since lambda expressions should be
2812 ;; closed by now).
2813 (and lexical-binding
2814 (byte-compile-make-lambda-lexenv
2815 arglistvars))
2816 reserved-csts)))
2817 ;; Build the actual byte-coded function.
2818 (cl-assert (eq 'byte-code (car-safe compiled)))
2819 (apply #'make-byte-code
2820 (if lexical-binding
2821 (byte-compile-make-args-desc arglist)
2822 arglist)
2823 (append
2824 ;; byte-string, constants-vector, stack depth
2825 (cdr compiled)
2826 ;; optionally, the doc string.
2827 (cond ((and lexical-binding arglist)
2828 ;; byte-compile-make-args-desc lost the args's names,
2829 ;; so preserve them in the docstring.
2830 (list (help-add-fundoc-usage doc arglist)))
2831 ((or doc int)
2832 (list doc)))
2833 ;; optionally, the interactive spec.
2834 (if int
2835 (list (nth 1 int))))))))
2837 (defvar byte-compile-reserved-constants 0)
2839 (defun byte-compile-constants-vector ()
2840 ;; Builds the constants-vector from the current variables and constants.
2841 ;; This modifies the constants from (const . nil) to (const . offset).
2842 ;; To keep the byte-codes to look up the vector as short as possible:
2843 ;; First 6 elements are vars, as there are one-byte varref codes for those.
2844 ;; Next up to byte-constant-limit are constants, still with one-byte codes.
2845 ;; Next variables again, to get 2-byte codes for variable lookup.
2846 ;; The rest of the constants and variables need 3-byte byte-codes.
2847 (let* ((i (1- byte-compile-reserved-constants))
2848 (rest (nreverse byte-compile-variables)) ; nreverse because the first
2849 (other (nreverse byte-compile-constants)) ; vars often are used most.
2850 ret tmp
2851 (limits '(5 ; Use the 1-byte varref codes,
2852 63 ; 1-constlim ; 1-byte byte-constant codes,
2853 255 ; 2-byte varref codes,
2854 65535 ; 3-byte codes for the rest.
2855 65535)) ; twice since we step when we swap.
2856 limit)
2857 (while (or rest other)
2858 (setq limit (car limits))
2859 (while (and rest (< i limit))
2860 (cond
2861 ((numberp (car rest))
2862 (cl-assert (< (car rest) byte-compile-reserved-constants)))
2863 ((setq tmp (assq (car (car rest)) ret))
2864 (setcdr (car rest) (cdr tmp)))
2866 (setcdr (car rest) (setq i (1+ i)))
2867 (setq ret (cons (car rest) ret))))
2868 (setq rest (cdr rest)))
2869 (setq limits (cdr limits) ;Step
2870 rest (prog1 other ;&Swap.
2871 (setq other rest))))
2872 (apply 'vector (nreverse (mapcar 'car ret)))))
2874 ;; Given an expression FORM, compile it and return an equivalent byte-code
2875 ;; expression (a call to the function byte-code).
2876 (defun byte-compile-top-level (form &optional for-effect output-type
2877 lexenv reserved-csts)
2878 ;; OUTPUT-TYPE advises about how form is expected to be used:
2879 ;; 'eval or nil -> a single form,
2880 ;; 'progn or t -> a list of forms,
2881 ;; 'lambda -> body of a lambda,
2882 ;; 'file -> used at file-level.
2883 (let ((byte-compile--for-effect for-effect)
2884 (byte-compile-constants nil)
2885 (byte-compile-variables nil)
2886 (byte-compile-tag-number 0)
2887 (byte-compile-depth 0)
2888 (byte-compile-maxdepth 0)
2889 (byte-compile--lexical-environment lexenv)
2890 (byte-compile-reserved-constants (or reserved-csts 0))
2891 (byte-compile-output nil)
2892 (byte-compile-jump-tables nil))
2893 (if (memq byte-optimize '(t source))
2894 (setq form (byte-optimize-form form byte-compile--for-effect)))
2895 (while (and (eq (car-safe form) 'progn) (null (cdr (cdr form))))
2896 (setq form (nth 1 form)))
2897 ;; Set up things for a lexically-bound function.
2898 (when (and lexical-binding (eq output-type 'lambda))
2899 ;; See how many arguments there are, and set the current stack depth
2900 ;; accordingly.
2901 (setq byte-compile-depth (length byte-compile--lexical-environment))
2902 ;; If there are args, output a tag to record the initial
2903 ;; stack-depth for the optimizer.
2904 (when (> byte-compile-depth 0)
2905 (byte-compile-out-tag (byte-compile-make-tag))))
2906 ;; Now compile FORM
2907 (byte-compile-form form byte-compile--for-effect)
2908 (byte-compile-out-toplevel byte-compile--for-effect output-type)))
2910 (defun byte-compile-out-toplevel (&optional for-effect output-type)
2911 (if for-effect
2912 ;; The stack is empty. Push a value to be returned from (byte-code ..).
2913 (if (eq (car (car byte-compile-output)) 'byte-discard)
2914 (setq byte-compile-output (cdr byte-compile-output))
2915 (byte-compile-push-constant
2916 ;; Push any constant - preferably one which already is used, and
2917 ;; a number or symbol - ie not some big sequence. The return value
2918 ;; isn't returned, but it would be a shame if some textually large
2919 ;; constant was not optimized away because we chose to return it.
2920 (and (not (assq nil byte-compile-constants)) ; Nil is often there.
2921 (let ((tmp (reverse byte-compile-constants)))
2922 (while (and tmp (not (or (symbolp (caar tmp))
2923 (numberp (caar tmp)))))
2924 (setq tmp (cdr tmp)))
2925 (caar tmp))))))
2926 (byte-compile-out 'byte-return 0)
2927 (setq byte-compile-output (nreverse byte-compile-output))
2928 (if (memq byte-optimize '(t byte))
2929 (setq byte-compile-output
2930 (byte-optimize-lapcode byte-compile-output)))
2932 ;; Decompile trivial functions:
2933 ;; only constants and variables, or a single funcall except in lambdas.
2934 ;; Except for Lisp_Compiled objects, forms like (foo "hi")
2935 ;; are still quicker than (byte-code "..." [foo "hi"] 2).
2936 ;; Note that even (quote foo) must be parsed just as any subr by the
2937 ;; interpreter, so quote should be compiled into byte-code in some contexts.
2938 ;; What to leave uncompiled:
2939 ;; lambda -> never. we used to leave it uncompiled if the body was
2940 ;; a single atom, but that causes confusion if the docstring
2941 ;; uses the (file . pos) syntax. Besides, now that we have
2942 ;; the Lisp_Compiled type, the compiled form is faster.
2943 ;; eval -> atom, quote or (function atom atom atom)
2944 ;; progn -> as <<same-as-eval>> or (progn <<same-as-eval>> atom)
2945 ;; file -> as progn, but takes both quotes and atoms, and longer forms.
2946 (let (rest
2947 (maycall (not (eq output-type 'lambda))) ; t if we may make a funcall.
2948 tmp body)
2949 (cond
2950 ;; #### This should be split out into byte-compile-nontrivial-function-p.
2951 ((or (eq output-type 'lambda)
2952 (nthcdr (if (eq output-type 'file) 50 8) byte-compile-output)
2953 (assq 'TAG byte-compile-output) ; Not necessary, but speeds up a bit.
2954 (not (setq tmp (assq 'byte-return byte-compile-output)))
2955 (progn
2956 (setq rest (nreverse
2957 (cdr (memq tmp (reverse byte-compile-output)))))
2958 (while
2959 (cond
2960 ((memq (car (car rest)) '(byte-varref byte-constant))
2961 (setq tmp (car (cdr (car rest))))
2962 (if (if (eq (car (car rest)) 'byte-constant)
2963 (or (consp tmp)
2964 (and (symbolp tmp)
2965 (not (macroexp--const-symbol-p tmp)))))
2966 (if maycall
2967 (setq body (cons (list 'quote tmp) body)))
2968 (setq body (cons tmp body))))
2969 ((and maycall
2970 ;; Allow a funcall if at most one atom follows it.
2971 (null (nthcdr 3 rest))
2972 (setq tmp (get (car (car rest)) 'byte-opcode-invert))
2973 (or (null (cdr rest))
2974 (and (memq output-type '(file progn t))
2975 (cdr (cdr rest))
2976 (eq (car (nth 1 rest)) 'byte-discard)
2977 (progn (setq rest (cdr rest)) t))))
2978 (setq maycall nil) ; Only allow one real function call.
2979 (setq body (nreverse body))
2980 (setq body (list
2981 (if (and (eq tmp 'funcall)
2982 (eq (car-safe (car body)) 'quote)
2983 (symbolp (nth 1 (car body))))
2984 (cons (nth 1 (car body)) (cdr body))
2985 (cons tmp body))))
2986 (or (eq output-type 'file)
2987 (not (delq nil (mapcar 'consp (cdr (car body))))))))
2988 (setq rest (cdr rest)))
2989 rest))
2990 (let ((byte-compile-vector (byte-compile-constants-vector)))
2991 (list 'byte-code (byte-compile-lapcode byte-compile-output)
2992 byte-compile-vector byte-compile-maxdepth)))
2993 ;; it's a trivial function
2994 ((cdr body) (cons 'progn (nreverse body)))
2995 ((car body)))))
2997 ;; Given BODY, compile it and return a new body.
2998 (defun byte-compile-top-level-body (body &optional for-effect)
2999 (setq body
3000 (byte-compile-top-level (cons 'progn body) for-effect t))
3001 (cond ((eq (car-safe body) 'progn)
3002 (cdr body))
3003 (body
3004 (list body))))
3006 ;; Special macro-expander used during byte-compilation.
3007 (defun byte-compile-macroexpand-declare-function (fn file &rest args)
3008 (declare (advertised-calling-convention
3009 (fn file &optional arglist fileonly) nil))
3010 (let ((gotargs (and (consp args) (listp (car args))))
3011 (unresolved (assq fn byte-compile-unresolved-functions)))
3012 (when unresolved ; function was called before declaration
3013 (if (and gotargs (byte-compile-warning-enabled-p 'callargs))
3014 (byte-compile-arglist-warn fn (car args) nil)
3015 (setq byte-compile-unresolved-functions
3016 (delq unresolved byte-compile-unresolved-functions))))
3017 (push (cons fn (if gotargs
3018 (list 'declared (car args))
3019 t)) ; Arglist not specified.
3020 byte-compile-function-environment))
3021 ;; We are stating that it _will_ be defined at runtime.
3022 (setq byte-compile-noruntime-functions
3023 (delq fn byte-compile-noruntime-functions))
3024 ;; Delegate the rest to the normal macro definition.
3025 (macroexpand `(declare-function ,fn ,file ,@args)))
3028 ;; This is the recursive entry point for compiling each subform of an
3029 ;; expression.
3030 ;; If for-effect is non-nil, byte-compile-form will output a byte-discard
3031 ;; before terminating (ie no value will be left on the stack).
3032 ;; A byte-compile handler may, when byte-compile--for-effect is non-nil, choose
3033 ;; output code which does not leave a value on the stack, and then set
3034 ;; byte-compile--for-effect to nil (to prevent byte-compile-form from
3035 ;; outputting the byte-discard).
3036 ;; If a handler wants to call another handler, it should do so via
3037 ;; byte-compile-form, or take extreme care to handle byte-compile--for-effect
3038 ;; correctly. (Use byte-compile-form-do-effect to reset the
3039 ;; byte-compile--for-effect flag too.)
3041 (defun byte-compile-form (form &optional for-effect)
3042 (let ((byte-compile--for-effect for-effect))
3043 (cond
3044 ((not (consp form))
3045 (cond ((or (not (symbolp form)) (macroexp--const-symbol-p form))
3046 (when (symbolp form)
3047 (byte-compile-set-symbol-position form))
3048 (byte-compile-constant form))
3049 ((and byte-compile--for-effect byte-compile-delete-errors)
3050 (when (symbolp form)
3051 (byte-compile-set-symbol-position form))
3052 (setq byte-compile--for-effect nil))
3054 (byte-compile-variable-ref form))))
3055 ((symbolp (car form))
3056 (let* ((fn (car form))
3057 (handler (get fn 'byte-compile))
3058 (interactive-only
3059 (or (get fn 'interactive-only)
3060 (memq fn byte-compile-interactive-only-functions))))
3061 (when (memq fn '(set symbol-value run-hooks ;; add-to-list
3062 add-hook remove-hook run-hook-with-args
3063 run-hook-with-args-until-success
3064 run-hook-with-args-until-failure))
3065 (pcase (cdr form)
3066 (`(',var . ,_)
3067 (when (assq var byte-compile-lexical-variables)
3068 (byte-compile-report-error
3069 (format-message "%s cannot use lexical var `%s'" fn var))))))
3070 (when (macroexp--const-symbol-p fn)
3071 (byte-compile-warn "`%s' called as a function" fn))
3072 (when (and (byte-compile-warning-enabled-p 'interactive-only)
3073 interactive-only)
3074 (byte-compile-warn "`%s' is for interactive use only%s"
3076 (cond ((stringp interactive-only)
3077 (format "; %s"
3078 (substitute-command-keys
3079 interactive-only)))
3080 ((and (symbolp 'interactive-only)
3081 (not (eq interactive-only t)))
3082 (format-message "; use `%s' instead."
3083 interactive-only))
3084 (t "."))))
3085 (if (eq (car-safe (symbol-function (car form))) 'macro)
3086 (byte-compile-report-error
3087 (format "Forgot to expand macro %s in %S" (car form) form)))
3088 (if (and handler
3089 ;; Make sure that function exists.
3090 (and (functionp handler)
3091 ;; Ignore obsolete byte-compile function used by former
3092 ;; CL code to handle compiler macros (we do it
3093 ;; differently now).
3094 (not (eq handler 'cl-byte-compile-compiler-macro))))
3095 (funcall handler form)
3096 (byte-compile-normal-call form))
3097 (if (byte-compile-warning-enabled-p 'cl-functions)
3098 (byte-compile-cl-warn form))))
3099 ((and (byte-code-function-p (car form))
3100 (memq byte-optimize '(t lap)))
3101 (byte-compile-unfold-bcf form))
3102 ((and (eq (car-safe (car form)) 'lambda)
3103 ;; if the form comes out the same way it went in, that's
3104 ;; because it was malformed, and we couldn't unfold it.
3105 (not (eq form (setq form (byte-compile-unfold-lambda form)))))
3106 (byte-compile-form form byte-compile--for-effect)
3107 (setq byte-compile--for-effect nil))
3108 ((byte-compile-normal-call form)))
3109 (if byte-compile--for-effect
3110 (byte-compile-discard))))
3112 (defun byte-compile-normal-call (form)
3113 (when (and (byte-compile-warning-enabled-p 'callargs)
3114 (symbolp (car form)))
3115 (if (memq (car form)
3116 '(custom-declare-group custom-declare-variable
3117 custom-declare-face))
3118 (byte-compile-nogroup-warn form))
3119 (byte-compile-callargs-warn form))
3120 (if byte-compile-generate-call-tree
3121 (byte-compile-annotate-call-tree form))
3122 (when (and byte-compile--for-effect (eq (car form) 'mapcar)
3123 (byte-compile-warning-enabled-p 'mapcar))
3124 (byte-compile-set-symbol-position 'mapcar)
3125 (byte-compile-warn
3126 "`mapcar' called for effect; use `mapc' or `dolist' instead"))
3127 (byte-compile-push-constant (car form))
3128 (mapc 'byte-compile-form (cdr form)) ; wasteful, but faster.
3129 (byte-compile-out 'byte-call (length (cdr form))))
3132 ;; Splice the given lap code into the current instruction stream.
3133 ;; If it has any labels in it, you're responsible for making sure there
3134 ;; are no collisions, and that byte-compile-tag-number is reasonable
3135 ;; after this is spliced in. The provided list is destroyed.
3136 (defun byte-compile-inline-lapcode (lap end-depth)
3137 ;; "Replay" the operations: we used to just do
3138 ;; (setq byte-compile-output (nconc (nreverse lap) byte-compile-output))
3139 ;; but that fails to update byte-compile-depth, so we had to assume
3140 ;; that `lap' ends up adding exactly 1 element to the stack. This
3141 ;; happens to be true for byte-code generated by bytecomp.el without
3142 ;; lexical-binding, but it's not true in general, and it's not true for
3143 ;; code output by bytecomp.el with lexical-binding.
3144 ;; We also restore the value of `byte-compile-depth' and remove TAG depths
3145 ;; accordingly when inlining lapcode containing lap-code, exactly as
3146 ;; documented in `byte-compile-cond-jump-table'.
3147 (let ((endtag (byte-compile-make-tag))
3148 last-jump-tag ;; last TAG we have jumped to
3149 last-depth ;; last value of `byte-compile-depth'
3150 last-constant ;; value of the last constant encountered
3151 last-switch ;; whether the last op encountered was byte-switch
3152 switch-tags ;; a list of tags that byte-switch could jump to
3153 ;; a list of tags byte-switch will jump to, if the value doesn't
3154 ;; match any entry in the hash table
3155 switch-default-tags)
3156 (dolist (op lap)
3157 (cond
3158 ((eq (car op) 'TAG)
3159 (when (or (member op switch-tags) (member op switch-default-tags))
3160 ;; This TAG is used in a jump table, this means the last goto
3161 ;; was to a done/default TAG, and thus it's cddr should be set to nil.
3162 (when last-jump-tag
3163 (setcdr (cdr last-jump-tag) nil))
3164 ;; Also, restore the value of `byte-compile-depth' to what it was
3165 ;; before the last goto.
3166 (setq byte-compile-depth last-depth
3167 last-jump-tag nil))
3168 (byte-compile-out-tag op))
3169 ((memq (car op) byte-goto-ops)
3170 (setq last-depth byte-compile-depth
3171 last-jump-tag (cdr op))
3172 (byte-compile-goto (car op) (cdr op))
3173 (when last-switch
3174 ;; The last op was byte-switch, this goto jumps to a "default" TAG
3175 ;; (when no value in the jump table is satisfied).
3176 (push (cdr op) switch-default-tags)
3177 (setcdr (cdr (cdr op)) nil)
3178 (setq byte-compile-depth last-depth
3179 last-switch nil)))
3180 ((eq (car op) 'byte-return)
3181 (byte-compile-discard (- byte-compile-depth end-depth) t)
3182 (byte-compile-goto 'byte-goto endtag))
3184 (when (eq (car op) 'byte-switch)
3185 ;; The last constant is a jump table.
3186 (push last-constant byte-compile-jump-tables)
3187 (setq last-switch t)
3188 ;; Push all TAGs in the jump to switch-tags.
3189 (maphash #'(lambda (_k tag)
3190 (push tag switch-tags))
3191 last-constant))
3192 (setq last-constant (and (eq (car op) 'byte-constant) (cadr op)))
3193 (setq last-depth byte-compile-depth)
3194 (byte-compile-out (car op) (cdr op)))))
3195 (byte-compile-out-tag endtag)))
3197 (defun byte-compile-unfold-bcf (form)
3198 "Inline call to byte-code-functions."
3199 (let* ((byte-compile-bound-variables byte-compile-bound-variables)
3200 (fun (car form))
3201 (fargs (aref fun 0))
3202 (start-depth byte-compile-depth)
3203 (fmax2 (if (numberp fargs) (lsh fargs -7))) ;2*max+rest.
3204 ;; (fmin (if (numberp fargs) (logand fargs 127)))
3205 (alen (length (cdr form)))
3206 (dynbinds ())
3207 lap)
3208 (fetch-bytecode fun)
3209 (setq lap (byte-decompile-bytecode-1 (aref fun 1) (aref fun 2) t))
3210 ;; optimized switch bytecode makes it impossible to guess the correct
3211 ;; `byte-compile-depth', which can result in incorrect inlined code.
3212 ;; therefore, we do not inline code that uses the `byte-switch'
3213 ;; instruction.
3214 (if (assq 'byte-switch lap)
3215 (byte-compile-normal-call form)
3216 (mapc 'byte-compile-form (cdr form))
3217 (unless fmax2
3218 ;; Old-style byte-code.
3219 (cl-assert (listp fargs))
3220 (while fargs
3221 (pcase (car fargs)
3222 (`&optional (setq fargs (cdr fargs)))
3223 (`&rest (setq fmax2 (+ (* 2 (length dynbinds)) 1))
3224 (push (cadr fargs) dynbinds)
3225 (setq fargs nil))
3226 (_ (push (pop fargs) dynbinds))))
3227 (unless fmax2 (setq fmax2 (* 2 (length dynbinds)))))
3228 (cond
3229 ((<= (+ alen alen) fmax2)
3230 ;; Add missing &optional (or &rest) arguments.
3231 (dotimes (_ (- (/ (1+ fmax2) 2) alen))
3232 (byte-compile-push-constant nil)))
3233 ((zerop (logand fmax2 1))
3234 (byte-compile-report-error
3235 (format "Too many arguments for inlined function %S" form))
3236 (byte-compile-discard (- alen (/ fmax2 2))))
3238 ;; Turn &rest args into a list.
3239 (let ((n (- alen (/ (1- fmax2) 2))))
3240 (cl-assert (> n 0) nil "problem: fmax2=%S alen=%S n=%S" fmax2 alen n)
3241 (if (< n 5)
3242 (byte-compile-out
3243 (aref [byte-list1 byte-list2 byte-list3 byte-list4] (1- n))
3245 (byte-compile-out 'byte-listN n)))))
3246 (mapc #'byte-compile-dynamic-variable-bind dynbinds)
3247 (byte-compile-inline-lapcode lap (1+ start-depth))
3248 ;; Unbind dynamic variables.
3249 (when dynbinds
3250 (byte-compile-out 'byte-unbind (length dynbinds)))
3251 (cl-assert (eq byte-compile-depth (1+ start-depth))
3252 nil "Wrong depth start=%s end=%s" start-depth byte-compile-depth))))
3254 (defun byte-compile-check-variable (var access-type)
3255 "Do various error checks before a use of the variable VAR."
3256 (when (symbolp var)
3257 (byte-compile-set-symbol-position var))
3258 (cond ((or (not (symbolp var)) (macroexp--const-symbol-p var))
3259 (when (byte-compile-warning-enabled-p 'constants)
3260 (byte-compile-warn (if (eq access-type 'let-bind)
3261 "attempt to let-bind %s `%s'"
3262 "variable reference to %s `%s'")
3263 (if (symbolp var) "constant" "nonvariable")
3264 (prin1-to-string var))))
3265 ((let ((od (get var 'byte-obsolete-variable)))
3266 (and od
3267 (not (memq var byte-compile-not-obsolete-vars))
3268 (not (memq var byte-compile-global-not-obsolete-vars))
3269 (or (pcase (nth 1 od)
3270 (`set (not (eq access-type 'reference)))
3271 (`get (eq access-type 'reference))
3272 (_ t)))))
3273 (byte-compile-warn-obsolete var))))
3275 (defsubst byte-compile-dynamic-variable-op (base-op var)
3276 (let ((tmp (assq var byte-compile-variables)))
3277 (unless tmp
3278 (setq tmp (list var))
3279 (push tmp byte-compile-variables))
3280 (byte-compile-out base-op tmp)))
3282 (defun byte-compile-dynamic-variable-bind (var)
3283 "Generate code to bind the lexical variable VAR to the top-of-stack value."
3284 (byte-compile-check-variable var 'let-bind)
3285 (push var byte-compile-bound-variables)
3286 (byte-compile-dynamic-variable-op 'byte-varbind var))
3288 (defun byte-compile-variable-ref (var)
3289 "Generate code to push the value of the variable VAR on the stack."
3290 (byte-compile-check-variable var 'reference)
3291 (let ((lex-binding (assq var byte-compile--lexical-environment)))
3292 (if lex-binding
3293 ;; VAR is lexically bound
3294 (byte-compile-stack-ref (cdr lex-binding))
3295 ;; VAR is dynamically bound
3296 (unless (or (not (byte-compile-warning-enabled-p 'free-vars))
3297 (boundp var)
3298 (memq var byte-compile-bound-variables)
3299 (memq var byte-compile-free-references))
3300 (byte-compile-warn "reference to free variable `%S'" var)
3301 (push var byte-compile-free-references))
3302 (byte-compile-dynamic-variable-op 'byte-varref var))))
3304 (defun byte-compile-variable-set (var)
3305 "Generate code to set the variable VAR from the top-of-stack value."
3306 (byte-compile-check-variable var 'assign)
3307 (let ((lex-binding (assq var byte-compile--lexical-environment)))
3308 (if lex-binding
3309 ;; VAR is lexically bound.
3310 (byte-compile-stack-set (cdr lex-binding))
3311 ;; VAR is dynamically bound.
3312 (unless (or (not (byte-compile-warning-enabled-p 'free-vars))
3313 (boundp var)
3314 (memq var byte-compile-bound-variables)
3315 (memq var byte-compile-free-assignments))
3316 (byte-compile-warn "assignment to free variable `%s'" var)
3317 (push var byte-compile-free-assignments))
3318 (byte-compile-dynamic-variable-op 'byte-varset var))))
3320 (defmacro byte-compile-get-constant (const)
3321 `(or (if (stringp ,const)
3322 ;; In a string constant, treat properties as significant.
3323 (let (result)
3324 (dolist (elt byte-compile-constants)
3325 (if (equal-including-properties (car elt) ,const)
3326 (setq result elt)))
3327 result)
3328 (assq ,const byte-compile-constants))
3329 (car (setq byte-compile-constants
3330 (cons (list ,const) byte-compile-constants)))))
3332 ;; Use this when the value of a form is a constant.
3333 ;; This obeys byte-compile--for-effect.
3334 (defun byte-compile-constant (const)
3335 (if byte-compile--for-effect
3336 (setq byte-compile--for-effect nil)
3337 (when (symbolp const)
3338 (byte-compile-set-symbol-position const))
3339 (byte-compile-out 'byte-constant (byte-compile-get-constant const))))
3341 ;; Use this for a constant that is not the value of its containing form.
3342 ;; This ignores byte-compile--for-effect.
3343 (defun byte-compile-push-constant (const)
3344 (let ((byte-compile--for-effect nil))
3345 (inline (byte-compile-constant const))))
3347 ;; Compile those primitive ordinary functions
3348 ;; which have special byte codes just for speed.
3350 (defmacro byte-defop-compiler (function &optional compile-handler)
3351 "Add a compiler-form for FUNCTION.
3352 If function is a symbol, then the variable \"byte-SYMBOL\" must name
3353 the opcode to be used. If function is a list, the first element
3354 is the function and the second element is the bytecode-symbol.
3355 The second element may be nil, meaning there is no opcode.
3356 COMPILE-HANDLER is the function to use to compile this byte-op, or
3357 may be the abbreviations 0, 1, 2, 3, 0-1, or 1-2.
3358 If it is nil, then the handler is \"byte-compile-SYMBOL.\""
3359 (let (opcode)
3360 (if (symbolp function)
3361 (setq opcode (intern (concat "byte-" (symbol-name function))))
3362 (setq opcode (car (cdr function))
3363 function (car function)))
3364 (let ((fnform
3365 (list 'put (list 'quote function) ''byte-compile
3366 (list 'quote
3367 (or (cdr (assq compile-handler
3368 '((0 . byte-compile-no-args)
3369 (1 . byte-compile-one-arg)
3370 (2 . byte-compile-two-args)
3371 (2-and . byte-compile-and-folded)
3372 (3 . byte-compile-three-args)
3373 (0-1 . byte-compile-zero-or-one-arg)
3374 (1-2 . byte-compile-one-or-two-args)
3375 (2-3 . byte-compile-two-or-three-args)
3377 compile-handler
3378 (intern (concat "byte-compile-"
3379 (symbol-name function))))))))
3380 (if opcode
3381 (list 'progn fnform
3382 (list 'put (list 'quote function)
3383 ''byte-opcode (list 'quote opcode))
3384 (list 'put (list 'quote opcode)
3385 ''byte-opcode-invert (list 'quote function)))
3386 fnform))))
3388 (defmacro byte-defop-compiler-1 (function &optional compile-handler)
3389 (list 'byte-defop-compiler (list function nil) compile-handler))
3392 (put 'byte-call 'byte-opcode-invert 'funcall)
3393 (put 'byte-list1 'byte-opcode-invert 'list)
3394 (put 'byte-list2 'byte-opcode-invert 'list)
3395 (put 'byte-list3 'byte-opcode-invert 'list)
3396 (put 'byte-list4 'byte-opcode-invert 'list)
3397 (put 'byte-listN 'byte-opcode-invert 'list)
3398 (put 'byte-concat2 'byte-opcode-invert 'concat)
3399 (put 'byte-concat3 'byte-opcode-invert 'concat)
3400 (put 'byte-concat4 'byte-opcode-invert 'concat)
3401 (put 'byte-concatN 'byte-opcode-invert 'concat)
3402 (put 'byte-insertN 'byte-opcode-invert 'insert)
3404 (byte-defop-compiler point 0)
3405 ;;(byte-defop-compiler mark 0) ;; obsolete
3406 (byte-defop-compiler point-max 0)
3407 (byte-defop-compiler point-min 0)
3408 (byte-defop-compiler following-char 0)
3409 (byte-defop-compiler preceding-char 0)
3410 (byte-defop-compiler current-column 0)
3411 (byte-defop-compiler eolp 0)
3412 (byte-defop-compiler eobp 0)
3413 (byte-defop-compiler bolp 0)
3414 (byte-defop-compiler bobp 0)
3415 (byte-defop-compiler current-buffer 0)
3416 ;;(byte-defop-compiler read-char 0) ;; obsolete
3417 ;; (byte-defop-compiler interactive-p 0) ;; Obsolete.
3418 (byte-defop-compiler widen 0)
3419 (byte-defop-compiler end-of-line 0-1)
3420 (byte-defop-compiler forward-char 0-1)
3421 (byte-defop-compiler forward-line 0-1)
3422 (byte-defop-compiler symbolp 1)
3423 (byte-defop-compiler consp 1)
3424 (byte-defop-compiler stringp 1)
3425 (byte-defop-compiler listp 1)
3426 (byte-defop-compiler not 1)
3427 (byte-defop-compiler (null byte-not) 1)
3428 (byte-defop-compiler car 1)
3429 (byte-defop-compiler cdr 1)
3430 (byte-defop-compiler length 1)
3431 (byte-defop-compiler symbol-value 1)
3432 (byte-defop-compiler symbol-function 1)
3433 (byte-defop-compiler (1+ byte-add1) 1)
3434 (byte-defop-compiler (1- byte-sub1) 1)
3435 (byte-defop-compiler goto-char 1)
3436 (byte-defop-compiler char-after 0-1)
3437 (byte-defop-compiler set-buffer 1)
3438 ;;(byte-defop-compiler set-mark 1) ;; obsolete
3439 (byte-defop-compiler forward-word 0-1)
3440 (byte-defop-compiler char-syntax 1)
3441 (byte-defop-compiler nreverse 1)
3442 (byte-defop-compiler car-safe 1)
3443 (byte-defop-compiler cdr-safe 1)
3444 (byte-defop-compiler numberp 1)
3445 (byte-defop-compiler integerp 1)
3446 (byte-defop-compiler skip-chars-forward 1-2)
3447 (byte-defop-compiler skip-chars-backward 1-2)
3448 (byte-defop-compiler eq 2)
3449 (byte-defop-compiler memq 2)
3450 (byte-defop-compiler cons 2)
3451 (byte-defop-compiler aref 2)
3452 (byte-defop-compiler set 2)
3453 (byte-defop-compiler (= byte-eqlsign) 2-and)
3454 (byte-defop-compiler (< byte-lss) 2-and)
3455 (byte-defop-compiler (> byte-gtr) 2-and)
3456 (byte-defop-compiler (<= byte-leq) 2-and)
3457 (byte-defop-compiler (>= byte-geq) 2-and)
3458 (byte-defop-compiler get 2)
3459 (byte-defop-compiler nth 2)
3460 (byte-defop-compiler substring 2-3)
3461 (byte-defop-compiler (move-marker byte-set-marker) 2-3)
3462 (byte-defop-compiler set-marker 2-3)
3463 (byte-defop-compiler match-beginning 1)
3464 (byte-defop-compiler match-end 1)
3465 (byte-defop-compiler upcase 1)
3466 (byte-defop-compiler downcase 1)
3467 (byte-defop-compiler string= 2)
3468 (byte-defop-compiler string< 2)
3469 (byte-defop-compiler (string-equal byte-string=) 2)
3470 (byte-defop-compiler (string-lessp byte-string<) 2)
3471 (byte-defop-compiler equal 2)
3472 (byte-defop-compiler nthcdr 2)
3473 (byte-defop-compiler elt 2)
3474 (byte-defop-compiler member 2)
3475 (byte-defop-compiler assq 2)
3476 (byte-defop-compiler (rplaca byte-setcar) 2)
3477 (byte-defop-compiler (rplacd byte-setcdr) 2)
3478 (byte-defop-compiler setcar 2)
3479 (byte-defop-compiler setcdr 2)
3480 (byte-defop-compiler buffer-substring 2)
3481 (byte-defop-compiler delete-region 2)
3482 (byte-defop-compiler narrow-to-region 2)
3483 (byte-defop-compiler (% byte-rem) 2)
3484 (byte-defop-compiler aset 3)
3486 (byte-defop-compiler max byte-compile-associative)
3487 (byte-defop-compiler min byte-compile-associative)
3488 (byte-defop-compiler (+ byte-plus) byte-compile-associative)
3489 (byte-defop-compiler (* byte-mult) byte-compile-associative)
3491 ;;####(byte-defop-compiler move-to-column 1)
3492 (byte-defop-compiler-1 interactive byte-compile-noop)
3495 (defun byte-compile-subr-wrong-args (form n)
3496 (byte-compile-set-symbol-position (car form))
3497 (byte-compile-warn "`%s' called with %d arg%s, but requires %s"
3498 (car form) (length (cdr form))
3499 (if (= 1 (length (cdr form))) "" "s") n)
3500 ;; Get run-time wrong-number-of-args error.
3501 (byte-compile-normal-call form))
3503 (defun byte-compile-no-args (form)
3504 (if (not (= (length form) 1))
3505 (byte-compile-subr-wrong-args form "none")
3506 (byte-compile-out (get (car form) 'byte-opcode) 0)))
3508 (defun byte-compile-one-arg (form)
3509 (if (not (= (length form) 2))
3510 (byte-compile-subr-wrong-args form 1)
3511 (byte-compile-form (car (cdr form))) ;; Push the argument
3512 (byte-compile-out (get (car form) 'byte-opcode) 0)))
3514 (defun byte-compile-two-args (form)
3515 (if (not (= (length form) 3))
3516 (byte-compile-subr-wrong-args form 2)
3517 (byte-compile-form (car (cdr form))) ;; Push the arguments
3518 (byte-compile-form (nth 2 form))
3519 (byte-compile-out (get (car form) 'byte-opcode) 0)))
3521 (defun byte-compile-and-folded (form)
3522 "Compile calls to functions like `<='.
3523 These implicitly `and' together a bunch of two-arg bytecodes."
3524 (let ((l (length form)))
3525 (cond
3526 ((< l 3) (byte-compile-form `(progn ,(nth 1 form) t)))
3527 ((= l 3) (byte-compile-two-args form))
3528 ((cl-every #'macroexp-copyable-p (nthcdr 2 form))
3529 (byte-compile-form `(and (,(car form) ,(nth 1 form) ,(nth 2 form))
3530 (,(car form) ,@(nthcdr 2 form)))))
3531 (t (byte-compile-normal-call form)))))
3533 (defun byte-compile-three-args (form)
3534 (if (not (= (length form) 4))
3535 (byte-compile-subr-wrong-args form 3)
3536 (byte-compile-form (car (cdr form))) ;; Push the arguments
3537 (byte-compile-form (nth 2 form))
3538 (byte-compile-form (nth 3 form))
3539 (byte-compile-out (get (car form) 'byte-opcode) 0)))
3541 (defun byte-compile-zero-or-one-arg (form)
3542 (let ((len (length form)))
3543 (cond ((= len 1) (byte-compile-one-arg (append form '(nil))))
3544 ((= len 2) (byte-compile-one-arg form))
3545 (t (byte-compile-subr-wrong-args form "0-1")))))
3547 (defun byte-compile-one-or-two-args (form)
3548 (let ((len (length form)))
3549 (cond ((= len 2) (byte-compile-two-args (append form '(nil))))
3550 ((= len 3) (byte-compile-two-args form))
3551 (t (byte-compile-subr-wrong-args form "1-2")))))
3553 (defun byte-compile-two-or-three-args (form)
3554 (let ((len (length form)))
3555 (cond ((= len 3) (byte-compile-three-args (append form '(nil))))
3556 ((= len 4) (byte-compile-three-args form))
3557 (t (byte-compile-subr-wrong-args form "2-3")))))
3559 (defun byte-compile-noop (_form)
3560 (byte-compile-constant nil))
3562 (defun byte-compile-discard (&optional num preserve-tos)
3563 "Output byte codes to discard the NUM entries at the top of the stack.
3564 NUM defaults to 1.
3565 If PRESERVE-TOS is non-nil, preserve the top-of-stack value, as if it were
3566 popped before discarding the num values, and then pushed back again after
3567 discarding."
3568 (if (and (null num) (not preserve-tos))
3569 ;; common case
3570 (byte-compile-out 'byte-discard)
3571 ;; general case
3572 (unless num
3573 (setq num 1))
3574 (when (and preserve-tos (> num 0))
3575 ;; Preserve the top-of-stack value by writing it directly to the stack
3576 ;; location which will be at the top-of-stack after popping.
3577 (byte-compile-stack-set (1- (- byte-compile-depth num)))
3578 ;; Now we actually discard one less value, since we want to keep
3579 ;; the eventual TOS
3580 (setq num (1- num)))
3581 (while (> num 0)
3582 (byte-compile-out 'byte-discard)
3583 (setq num (1- num)))))
3585 (defun byte-compile-stack-ref (stack-pos)
3586 "Output byte codes to push the value at stack position STACK-POS."
3587 (let ((dist (- byte-compile-depth (1+ stack-pos))))
3588 (if (zerop dist)
3589 ;; A simple optimization
3590 (byte-compile-out 'byte-dup)
3591 ;; normal case
3592 (byte-compile-out 'byte-stack-ref dist))))
3594 (defun byte-compile-stack-set (stack-pos)
3595 "Output byte codes to store the TOS value at stack position STACK-POS."
3596 (byte-compile-out 'byte-stack-set (- byte-compile-depth (1+ stack-pos))))
3598 (byte-defop-compiler-1 internal-make-closure byte-compile-make-closure)
3599 (byte-defop-compiler-1 internal-get-closed-var byte-compile-get-closed-var)
3601 (defun byte-compile-make-closure (form)
3602 "Byte-compile the special `internal-make-closure' form."
3603 (if byte-compile--for-effect (setq byte-compile--for-effect nil)
3604 (let* ((vars (nth 1 form))
3605 (env (nth 2 form))
3606 (docstring-exp (nth 3 form))
3607 (body (nthcdr 4 form))
3608 (fun
3609 (byte-compile-lambda `(lambda ,vars . ,body) nil (length env))))
3610 (cl-assert (or (> (length env) 0)
3611 docstring-exp)) ;Otherwise, we don't need a closure.
3612 (cl-assert (byte-code-function-p fun))
3613 (byte-compile-form `(make-byte-code
3614 ',(aref fun 0) ',(aref fun 1)
3615 (vconcat (vector . ,env) ',(aref fun 2))
3616 ,@(let ((rest (nthcdr 3 (mapcar (lambda (x) `',x) fun))))
3617 (if docstring-exp
3618 `(,(car rest)
3619 ,docstring-exp
3620 ,@(cddr rest))
3621 rest)))))))
3623 (defun byte-compile-get-closed-var (form)
3624 "Byte-compile the special `internal-get-closed-var' form."
3625 (if byte-compile--for-effect (setq byte-compile--for-effect nil)
3626 (byte-compile-out 'byte-constant (nth 1 form))))
3628 ;; Compile a function that accepts one or more args and is right-associative.
3629 ;; We do it by left-associativity so that the operations
3630 ;; are done in the same order as in interpreted code.
3631 ;; We treat the one-arg case, as in (+ x), like (+ x 0).
3632 ;; in order to convert markers to numbers, and trigger expected errors.
3633 (defun byte-compile-associative (form)
3634 (if (cdr form)
3635 (let ((opcode (get (car form) 'byte-opcode))
3636 args)
3637 (if (and (< 3 (length form))
3638 (memq opcode (list (get '+ 'byte-opcode)
3639 (get '* 'byte-opcode))))
3640 ;; Don't use binary operations for > 2 operands, as that
3641 ;; may cause overflow/truncation in float operations.
3642 (byte-compile-normal-call form)
3643 (setq args (copy-sequence (cdr form)))
3644 (byte-compile-form (car args))
3645 (setq args (cdr args))
3646 (or args (setq args '(0)
3647 opcode (get '+ 'byte-opcode)))
3648 (dolist (arg args)
3649 (byte-compile-form arg)
3650 (byte-compile-out opcode 0))))
3651 (byte-compile-constant (eval form))))
3654 ;; more complicated compiler macros
3656 (byte-defop-compiler char-before)
3657 (byte-defop-compiler backward-char)
3658 (byte-defop-compiler backward-word)
3659 (byte-defop-compiler list)
3660 (byte-defop-compiler concat)
3661 (byte-defop-compiler fset)
3662 (byte-defop-compiler (indent-to-column byte-indent-to) byte-compile-indent-to)
3663 (byte-defop-compiler indent-to)
3664 (byte-defop-compiler insert)
3665 (byte-defop-compiler-1 function byte-compile-function-form)
3666 (byte-defop-compiler-1 - byte-compile-minus)
3667 (byte-defop-compiler (/ byte-quo) byte-compile-quo)
3668 (byte-defop-compiler nconc)
3670 ;; Is this worth it? Both -before and -after are written in C.
3671 (defun byte-compile-char-before (form)
3672 (cond ((or (= 1 (length form))
3673 (and (= 2 (length form)) (not (nth 1 form))))
3674 (byte-compile-form '(char-after (1- (point)))))
3675 ((= 2 (length form))
3676 (byte-compile-form (list 'char-after (if (numberp (nth 1 form))
3677 (1- (nth 1 form))
3678 `(1- (or ,(nth 1 form)
3679 (point)))))))
3680 (t (byte-compile-subr-wrong-args form "0-1"))))
3682 ;; backward-... ==> forward-... with negated argument.
3683 ;; Is this worth it? Both -backward and -forward are written in C.
3684 (defun byte-compile-backward-char (form)
3685 (cond ((or (= 1 (length form))
3686 (and (= 2 (length form)) (not (nth 1 form))))
3687 (byte-compile-form '(forward-char -1)))
3688 ((= 2 (length form))
3689 (byte-compile-form (list 'forward-char (if (numberp (nth 1 form))
3690 (- (nth 1 form))
3691 `(- (or ,(nth 1 form) 1))))))
3692 (t (byte-compile-subr-wrong-args form "0-1"))))
3694 (defun byte-compile-backward-word (form)
3695 (cond ((or (= 1 (length form))
3696 (and (= 2 (length form)) (not (nth 1 form))))
3697 (byte-compile-form '(forward-word -1)))
3698 ((= 2 (length form))
3699 (byte-compile-form (list 'forward-word (if (numberp (nth 1 form))
3700 (- (nth 1 form))
3701 `(- (or ,(nth 1 form) 1))))))
3702 (t (byte-compile-subr-wrong-args form "0-1"))))
3704 (defun byte-compile-list (form)
3705 (let ((count (length (cdr form))))
3706 (cond ((= count 0)
3707 (byte-compile-constant nil))
3708 ((< count 5)
3709 (mapc 'byte-compile-form (cdr form))
3710 (byte-compile-out
3711 (aref [byte-list1 byte-list2 byte-list3 byte-list4] (1- count)) 0))
3712 ((< count 256)
3713 (mapc 'byte-compile-form (cdr form))
3714 (byte-compile-out 'byte-listN count))
3715 (t (byte-compile-normal-call form)))))
3717 (defun byte-compile-concat (form)
3718 (let ((count (length (cdr form))))
3719 (cond ((and (< 1 count) (< count 5))
3720 (mapc 'byte-compile-form (cdr form))
3721 (byte-compile-out
3722 (aref [byte-concat2 byte-concat3 byte-concat4] (- count 2))
3724 ;; Concat of one arg is not a no-op if arg is not a string.
3725 ((= count 0)
3726 (byte-compile-form ""))
3727 ((< count 256)
3728 (mapc 'byte-compile-form (cdr form))
3729 (byte-compile-out 'byte-concatN count))
3730 ((byte-compile-normal-call form)))))
3732 (defun byte-compile-minus (form)
3733 (let ((len (length form)))
3734 (cond
3735 ((= 1 len) (byte-compile-constant 0))
3736 ((= 2 len)
3737 (byte-compile-form (cadr form))
3738 (byte-compile-out 'byte-negate 0))
3739 ((= 3 len)
3740 (byte-compile-form (nth 1 form))
3741 (byte-compile-form (nth 2 form))
3742 (byte-compile-out 'byte-diff 0))
3743 ;; Don't use binary operations for > 2 operands, as that may
3744 ;; cause overflow/truncation in float operations.
3745 (t (byte-compile-normal-call form)))))
3747 (defun byte-compile-quo (form)
3748 (let ((len (length form)))
3749 (cond ((< len 2)
3750 (byte-compile-subr-wrong-args form "1 or more"))
3751 ((= len 3)
3752 (byte-compile-two-args form))
3754 ;; Don't use binary operations for > 2 operands, as that
3755 ;; may cause overflow/truncation in float operations.
3756 (byte-compile-normal-call form)))))
3758 (defun byte-compile-nconc (form)
3759 (let ((len (length form)))
3760 (cond ((= len 1)
3761 (byte-compile-constant nil))
3762 ((= len 2)
3763 ;; nconc of one arg is a noop, even if that arg isn't a list.
3764 (byte-compile-form (nth 1 form)))
3766 (byte-compile-form (car (setq form (cdr form))))
3767 (while (setq form (cdr form))
3768 (byte-compile-form (car form))
3769 (byte-compile-out 'byte-nconc 0))))))
3771 (defun byte-compile-fset (form)
3772 ;; warn about forms like (fset 'foo '(lambda () ...))
3773 ;; (where the lambda expression is non-trivial...)
3774 (let ((fn (nth 2 form))
3775 body)
3776 (if (and (eq (car-safe fn) 'quote)
3777 (eq (car-safe (setq fn (nth 1 fn))) 'lambda))
3778 (progn
3779 (setq body (cdr (cdr fn)))
3780 (if (stringp (car body)) (setq body (cdr body)))
3781 (if (eq 'interactive (car-safe (car body))) (setq body (cdr body)))
3782 (if (and (consp (car body))
3783 (not (eq 'byte-code (car (car body)))))
3784 (byte-compile-warn
3785 "A quoted lambda form is the second argument of `fset'. This is probably
3786 not what you want, as that lambda cannot be compiled. Consider using
3787 the syntax #'(lambda (...) ...) instead.")))))
3788 (byte-compile-two-args form))
3790 ;; (function foo) must compile like 'foo, not like (symbol-function 'foo).
3791 ;; Otherwise it will be incompatible with the interpreter,
3792 ;; and (funcall (function foo)) will lose with autoloads.
3794 (defun byte-compile-function-form (form)
3795 (let ((f (nth 1 form)))
3796 (when (and (symbolp f)
3797 (byte-compile-warning-enabled-p 'callargs))
3798 (byte-compile-function-warn f t (byte-compile-fdefinition f nil)))
3800 (byte-compile-constant (if (eq 'lambda (car-safe f))
3801 (byte-compile-lambda f)
3802 f))))
3804 (defun byte-compile-indent-to (form)
3805 (let ((len (length form)))
3806 (cond ((= len 2)
3807 (byte-compile-form (car (cdr form)))
3808 (byte-compile-out 'byte-indent-to 0))
3809 ((= len 3)
3810 ;; no opcode for 2-arg case.
3811 (byte-compile-normal-call form))
3813 (byte-compile-subr-wrong-args form "1-2")))))
3815 (defun byte-compile-insert (form)
3816 (cond ((null (cdr form))
3817 (byte-compile-constant nil))
3818 ((<= (length form) 256)
3819 (mapc 'byte-compile-form (cdr form))
3820 (if (cdr (cdr form))
3821 (byte-compile-out 'byte-insertN (length (cdr form)))
3822 (byte-compile-out 'byte-insert 0)))
3823 ((memq t (mapcar 'consp (cdr (cdr form))))
3824 (byte-compile-normal-call form))
3825 ;; We can split it; there is no function call after inserting 1st arg.
3827 (while (setq form (cdr form))
3828 (byte-compile-form (car form))
3829 (byte-compile-out 'byte-insert 0)
3830 (if (cdr form)
3831 (byte-compile-discard))))))
3834 (byte-defop-compiler-1 setq)
3835 (byte-defop-compiler-1 setq-default)
3836 (byte-defop-compiler-1 quote)
3838 (defun byte-compile-setq (form)
3839 (let* ((args (cdr form))
3840 (len (length args)))
3841 (if (= (logand len 1) 1)
3842 (progn
3843 (byte-compile-report-error
3844 (format-message
3845 "missing value for `%S' at end of setq" (car (last args))))
3846 (byte-compile-form
3847 `(signal 'wrong-number-of-arguments '(setq ,len))
3848 byte-compile--for-effect))
3849 (if args
3850 (while args
3851 (byte-compile-form (car (cdr args)))
3852 (or byte-compile--for-effect (cdr (cdr args))
3853 (byte-compile-out 'byte-dup 0))
3854 (byte-compile-variable-set (car args))
3855 (setq args (cdr (cdr args))))
3856 ;; (setq), with no arguments.
3857 (byte-compile-form nil byte-compile--for-effect)))
3858 (setq byte-compile--for-effect nil)))
3860 (defun byte-compile-setq-default (form)
3861 (setq form (cdr form))
3862 (if (null form) ; (setq-default), with no arguments
3863 (byte-compile-form nil byte-compile--for-effect)
3864 (if (> (length form) 2)
3865 (let ((setters ()))
3866 (while (consp form)
3867 (push `(setq-default ,(pop form) ,(pop form)) setters))
3868 (byte-compile-form (cons 'progn (nreverse setters))))
3869 (let ((var (car form)))
3870 (and (or (not (symbolp var))
3871 (macroexp--const-symbol-p var t))
3872 (byte-compile-warning-enabled-p 'constants)
3873 (byte-compile-warn
3874 "variable assignment to %s `%s'"
3875 (if (symbolp var) "constant" "nonvariable")
3876 (prin1-to-string var)))
3877 (byte-compile-normal-call `(set-default ',var ,@(cdr form)))))))
3879 (byte-defop-compiler-1 set-default)
3880 (defun byte-compile-set-default (form)
3881 (let ((varexp (car-safe (cdr-safe form))))
3882 (if (eq (car-safe varexp) 'quote)
3883 ;; If the varexp is constant, compile it as a setq-default
3884 ;; so we get more warnings.
3885 (byte-compile-setq-default `(setq-default ,(car-safe (cdr varexp))
3886 ,@(cddr form)))
3887 (byte-compile-normal-call form))))
3889 (defun byte-compile-quote (form)
3890 (byte-compile-constant (car (cdr form))))
3892 ;;; control structures
3894 (defun byte-compile-body (body &optional for-effect)
3895 (while (cdr body)
3896 (byte-compile-form (car body) t)
3897 (setq body (cdr body)))
3898 (byte-compile-form (car body) for-effect))
3900 (defsubst byte-compile-body-do-effect (body)
3901 (byte-compile-body body byte-compile--for-effect)
3902 (setq byte-compile--for-effect nil))
3904 (defsubst byte-compile-form-do-effect (form)
3905 (byte-compile-form form byte-compile--for-effect)
3906 (setq byte-compile--for-effect nil))
3908 (byte-defop-compiler-1 inline byte-compile-progn)
3909 (byte-defop-compiler-1 progn)
3910 (byte-defop-compiler-1 prog1)
3911 (byte-defop-compiler-1 prog2)
3912 (byte-defop-compiler-1 if)
3913 (byte-defop-compiler-1 cond)
3914 (byte-defop-compiler-1 and)
3915 (byte-defop-compiler-1 or)
3916 (byte-defop-compiler-1 while)
3917 (byte-defop-compiler-1 funcall)
3918 (byte-defop-compiler-1 let)
3919 (byte-defop-compiler-1 let* byte-compile-let)
3921 (defun byte-compile-progn (form)
3922 (byte-compile-body-do-effect (cdr form)))
3924 (defun byte-compile-prog1 (form)
3925 (byte-compile-form-do-effect (car (cdr form)))
3926 (byte-compile-body (cdr (cdr form)) t))
3928 (defun byte-compile-prog2 (form)
3929 (byte-compile-form (nth 1 form) t)
3930 (byte-compile-form-do-effect (nth 2 form))
3931 (byte-compile-body (cdr (cdr (cdr form))) t))
3933 (defmacro byte-compile-goto-if (cond discard tag)
3934 `(byte-compile-goto
3935 (if ,cond
3936 (if ,discard 'byte-goto-if-not-nil 'byte-goto-if-not-nil-else-pop)
3937 (if ,discard 'byte-goto-if-nil 'byte-goto-if-nil-else-pop))
3938 ,tag))
3940 ;; Return the list of items in CONDITION-PARAM that match PRED-LIST.
3941 ;; Only return items that are not in ONLY-IF-NOT-PRESENT.
3942 (defun byte-compile-find-bound-condition (condition-param
3943 pred-list
3944 &optional only-if-not-present)
3945 (let ((result nil)
3946 (nth-one nil)
3947 (cond-list
3948 (if (memq (car-safe condition-param) pred-list)
3949 ;; The condition appears by itself.
3950 (list condition-param)
3951 ;; If the condition is an `and', look for matches among the
3952 ;; `and' arguments.
3953 (when (eq 'and (car-safe condition-param))
3954 (cdr condition-param)))))
3956 (dolist (crt cond-list)
3957 (when (and (memq (car-safe crt) pred-list)
3958 (eq 'quote (car-safe (setq nth-one (nth 1 crt))))
3959 ;; Ignore if the symbol is already on the unresolved
3960 ;; list.
3961 (not (assq (nth 1 nth-one) ; the relevant symbol
3962 only-if-not-present)))
3963 (push (nth 1 (nth 1 crt)) result)))
3964 result))
3966 (defmacro byte-compile-maybe-guarded (condition &rest body)
3967 "Execute forms in BODY, potentially guarded by CONDITION.
3968 CONDITION is a variable whose value is a test in an `if' or `cond'.
3969 BODY is the code to compile in the first arm of the if or the body of
3970 the cond clause. If CONDITION's value is of the form (fboundp \\='foo)
3971 or (boundp \\='foo), the relevant warnings from BODY about foo's
3972 being undefined (or obsolete) will be suppressed.
3974 If CONDITION's value is (not (featurep \\='emacs)) or (featurep \\='xemacs),
3975 that suppresses all warnings during execution of BODY."
3976 (declare (indent 1) (debug t))
3977 `(let* ((fbound-list (byte-compile-find-bound-condition
3978 ,condition '(fboundp functionp)
3979 byte-compile-unresolved-functions))
3980 (bound-list (byte-compile-find-bound-condition
3981 ,condition '(boundp default-boundp)))
3982 ;; Maybe add to the bound list.
3983 (byte-compile-bound-variables
3984 (append bound-list byte-compile-bound-variables)))
3985 (unwind-protect
3986 ;; If things not being bound at all is ok, so must them being
3987 ;; obsolete. Note that we add to the existing lists since Tramp
3988 ;; (ab)uses this feature.
3989 ;; FIXME: If `foo' is obsoleted by `bar', the code below
3990 ;; correctly arranges to silence the warnings after testing
3991 ;; existence of `foo', but the warning should also be
3992 ;; silenced after testing the existence of `bar'.
3993 (let ((byte-compile-not-obsolete-vars
3994 (append byte-compile-not-obsolete-vars bound-list))
3995 (byte-compile-not-obsolete-funcs
3996 (append byte-compile-not-obsolete-funcs fbound-list)))
3997 ,@body)
3998 ;; Maybe remove the function symbol from the unresolved list.
3999 (dolist (fbound fbound-list)
4000 (when fbound
4001 (setq byte-compile-unresolved-functions
4002 (delq (assq fbound byte-compile-unresolved-functions)
4003 byte-compile-unresolved-functions)))))))
4005 (defun byte-compile-if (form)
4006 (byte-compile-form (car (cdr form)))
4007 ;; Check whether we have `(if (fboundp ...' or `(if (boundp ...'
4008 ;; and avoid warnings about the relevant symbols in the consequent.
4009 (let ((clause (nth 1 form))
4010 (donetag (byte-compile-make-tag)))
4011 (if (null (nthcdr 3 form))
4012 ;; No else-forms
4013 (progn
4014 (byte-compile-goto-if nil byte-compile--for-effect donetag)
4015 (byte-compile-maybe-guarded clause
4016 (byte-compile-form (nth 2 form) byte-compile--for-effect))
4017 (byte-compile-out-tag donetag))
4018 (let ((elsetag (byte-compile-make-tag)))
4019 (byte-compile-goto 'byte-goto-if-nil elsetag)
4020 (byte-compile-maybe-guarded clause
4021 (byte-compile-form (nth 2 form) byte-compile--for-effect))
4022 (byte-compile-goto 'byte-goto donetag)
4023 (byte-compile-out-tag elsetag)
4024 (byte-compile-maybe-guarded (list 'not clause)
4025 (byte-compile-body (cdr (cdr (cdr form))) byte-compile--for-effect))
4026 (byte-compile-out-tag donetag))))
4027 (setq byte-compile--for-effect nil))
4029 (defun byte-compile-cond-vars (obj1 obj2)
4030 ;; We make sure that of OBJ1 and OBJ2, one of them is a symbol,
4031 ;; and the other is a constant expression whose value can be
4032 ;; compared with `eq' (with `macroexp-const-p').
4034 (and (symbolp obj1) (macroexp-const-p obj2) (cons obj1 obj2))
4035 (and (symbolp obj2) (macroexp-const-p obj1) (cons obj2 obj1))))
4037 (defun byte-compile-cond-jump-table-info (clauses)
4038 "If CLAUSES is a `cond' form where:
4039 The condition for each clause is of the form (TEST VAR VALUE).
4040 VAR is a variable.
4041 TEST and VAR are the same throughout all conditions.
4042 VALUE satisfies `macroexp-const-p'.
4044 Return a list of the form ((TEST . VAR) ((VALUE BODY) ...))"
4045 (let ((cases '())
4046 (ok t)
4047 prev-var prev-test)
4048 (and (catch 'break
4049 (dolist (clause (cdr clauses) ok)
4050 (let* ((condition (car clause))
4051 (test (car-safe condition))
4052 (vars (when (consp condition)
4053 (byte-compile-cond-vars (cadr condition) (cl-caddr condition))))
4054 (obj1 (car-safe vars))
4055 (obj2 (cdr-safe vars))
4056 (body (cdr-safe clause)))
4057 (unless prev-var
4058 (setq prev-var obj1))
4059 (unless prev-test
4060 (setq prev-test test))
4061 (if (and obj1 (memq test '(eq eql equal))
4062 (consp condition)
4063 (eq test prev-test)
4064 (eq obj1 prev-var)
4065 ;; discard duplicate clauses
4066 (not (assq obj2 cases)))
4067 (push (list (if (consp obj2) (eval obj2) obj2) body) cases)
4068 (if (and (macroexp-const-p condition) condition)
4069 (progn (push (list 'default (or body `(,condition))) cases)
4070 (throw 'break t))
4071 (setq ok nil)
4072 (throw 'break nil))))))
4073 (list (cons prev-test prev-var) (nreverse cases)))))
4075 (defun byte-compile-cond-jump-table (clauses)
4076 (let* ((table-info (byte-compile-cond-jump-table-info clauses))
4077 (test (caar table-info))
4078 (var (cdar table-info))
4079 (cases (cadr table-info))
4080 jump-table test-obj body tag donetag default-tag default-case)
4081 (when (and cases (not (= (length cases) 1)))
4082 ;; TODO: Once :linear-search is implemented for `make-hash-table'
4083 ;; set it to `t' for cond forms with a small number of cases.
4084 (setq jump-table (make-hash-table :test test
4085 :purecopy t
4086 :size (if (assq 'default cases)
4087 (1- (length cases))
4088 (length cases)))
4089 default-tag (byte-compile-make-tag)
4090 donetag (byte-compile-make-tag))
4091 ;; The structure of byte-switch code:
4093 ;; varref var
4094 ;; constant #s(hash-table purecopy t data (val1 (TAG1) val2 (TAG2)))
4095 ;; switch
4096 ;; goto DEFAULT-TAG
4097 ;; TAG1
4098 ;; <clause body>
4099 ;; goto DONETAG
4100 ;; TAG2
4101 ;; <clause body>
4102 ;; goto DONETAG
4103 ;; DEFAULT-TAG
4104 ;; <body for `t' clause, if any (else `constant nil')>
4105 ;; DONETAG
4107 (byte-compile-variable-ref var)
4108 (byte-compile-push-constant jump-table)
4109 (byte-compile-out 'byte-switch)
4111 ;; When the opcode argument is `byte-goto', `byte-compile-goto' sets
4112 ;; `byte-compile-depth' to `nil'. However, we need `byte-compile-depth'
4113 ;; to be non-nil for generating tags for all cases. Since
4114 ;; `byte-compile-depth' will increase by at most 1 after compiling
4115 ;; all of the clause (which is further enforced by cl-assert below)
4116 ;; it should be safe to preserve it's value.
4117 (let ((byte-compile-depth byte-compile-depth))
4118 (byte-compile-goto 'byte-goto default-tag))
4120 (when (assq 'default cases)
4121 (setq default-case (cadr (assq 'default cases))
4122 cases (butlast cases 1)))
4124 (dolist (case cases)
4125 (setq tag (byte-compile-make-tag)
4126 test-obj (nth 0 case)
4127 body (nth 1 case))
4128 (byte-compile-out-tag tag)
4129 (puthash test-obj tag jump-table)
4131 (let ((byte-compile-depth byte-compile-depth)
4132 (init-depth byte-compile-depth))
4133 ;; Since `byte-compile-body' might increase `byte-compile-depth'
4134 ;; by 1, not preserving it's value will cause it to potentially
4135 ;; increase by one for every clause body compiled, causing
4136 ;; depth/tag conflicts or violating asserts down the road.
4137 ;; To make sure `byte-compile-body' itself doesn't violate this,
4138 ;; we use `cl-assert'.
4139 (if (null body)
4140 (byte-compile-form t byte-compile--for-effect)
4141 (byte-compile-body body byte-compile--for-effect))
4142 (cl-assert (or (= byte-compile-depth init-depth)
4143 (= byte-compile-depth (1+ init-depth))))
4144 (byte-compile-goto 'byte-goto donetag)
4145 (setcdr (cdr donetag) nil)))
4147 (byte-compile-out-tag default-tag)
4148 (if default-case
4149 (byte-compile-body-do-effect default-case)
4150 (byte-compile-constant nil))
4151 (byte-compile-out-tag donetag)
4152 (push jump-table byte-compile-jump-tables))))
4154 (defun byte-compile-cond (clauses)
4155 (or (and byte-compile-cond-use-jump-table
4156 (byte-compile-cond-jump-table clauses))
4157 (let ((donetag (byte-compile-make-tag))
4158 nexttag clause)
4159 (while (setq clauses (cdr clauses))
4160 (setq clause (car clauses))
4161 (cond ((or (eq (car clause) t)
4162 (and (eq (car-safe (car clause)) 'quote)
4163 (car-safe (cdr-safe (car clause)))))
4164 ;; Unconditional clause
4165 (setq clause (cons t clause)
4166 clauses nil))
4167 ((cdr clauses)
4168 (byte-compile-form (car clause))
4169 (if (null (cdr clause))
4170 ;; First clause is a singleton.
4171 (byte-compile-goto-if t byte-compile--for-effect donetag)
4172 (setq nexttag (byte-compile-make-tag))
4173 (byte-compile-goto 'byte-goto-if-nil nexttag)
4174 (byte-compile-maybe-guarded (car clause)
4175 (byte-compile-body (cdr clause) byte-compile--for-effect))
4176 (byte-compile-goto 'byte-goto donetag)
4177 (byte-compile-out-tag nexttag)))))
4178 ;; Last clause
4179 (let ((guard (car clause)))
4180 (and (cdr clause) (not (eq guard t))
4181 (progn (byte-compile-form guard)
4182 (byte-compile-goto-if nil byte-compile--for-effect donetag)
4183 (setq clause (cdr clause))))
4184 (byte-compile-maybe-guarded guard
4185 (byte-compile-body-do-effect clause)))
4186 (byte-compile-out-tag donetag))))
4188 (defun byte-compile-and (form)
4189 (let ((failtag (byte-compile-make-tag))
4190 (args (cdr form)))
4191 (if (null args)
4192 (byte-compile-form-do-effect t)
4193 (byte-compile-and-recursion args failtag))))
4195 ;; Handle compilation of a nontrivial `and' call.
4196 ;; We use tail recursion so we can use byte-compile-maybe-guarded.
4197 (defun byte-compile-and-recursion (rest failtag)
4198 (if (cdr rest)
4199 (progn
4200 (byte-compile-form (car rest))
4201 (byte-compile-goto-if nil byte-compile--for-effect failtag)
4202 (byte-compile-maybe-guarded (car rest)
4203 (byte-compile-and-recursion (cdr rest) failtag)))
4204 (byte-compile-form-do-effect (car rest))
4205 (byte-compile-out-tag failtag)))
4207 (defun byte-compile-or (form)
4208 (let ((wintag (byte-compile-make-tag))
4209 (args (cdr form)))
4210 (if (null args)
4211 (byte-compile-form-do-effect nil)
4212 (byte-compile-or-recursion args wintag))))
4214 ;; Handle compilation of a nontrivial `or' call.
4215 ;; We use tail recursion so we can use byte-compile-maybe-guarded.
4216 (defun byte-compile-or-recursion (rest wintag)
4217 (if (cdr rest)
4218 (progn
4219 (byte-compile-form (car rest))
4220 (byte-compile-goto-if t byte-compile--for-effect wintag)
4221 (byte-compile-maybe-guarded (list 'not (car rest))
4222 (byte-compile-or-recursion (cdr rest) wintag)))
4223 (byte-compile-form-do-effect (car rest))
4224 (byte-compile-out-tag wintag)))
4226 (defun byte-compile-while (form)
4227 (let ((endtag (byte-compile-make-tag))
4228 (looptag (byte-compile-make-tag)))
4229 (byte-compile-out-tag looptag)
4230 (byte-compile-form (car (cdr form)))
4231 (byte-compile-goto-if nil byte-compile--for-effect endtag)
4232 (byte-compile-body (cdr (cdr form)) t)
4233 (byte-compile-goto 'byte-goto looptag)
4234 (byte-compile-out-tag endtag)
4235 (setq byte-compile--for-effect nil)))
4237 (defun byte-compile-funcall (form)
4238 (if (cdr form)
4239 (progn
4240 (mapc 'byte-compile-form (cdr form))
4241 (byte-compile-out 'byte-call (length (cdr (cdr form)))))
4242 (byte-compile-report-error
4243 (format-message "`funcall' called with no arguments"))
4244 (byte-compile-form '(signal 'wrong-number-of-arguments '(funcall 0))
4245 byte-compile--for-effect)))
4248 ;; let binding
4250 (defun byte-compile-push-binding-init (clause)
4251 "Emit byte-codes to push the initialization value for CLAUSE on the stack.
4252 Return the offset in the form (VAR . OFFSET)."
4253 (let* ((var (if (consp clause) (car clause) clause)))
4254 ;; We record the stack position even of dynamic bindings; we'll put
4255 ;; them in the proper place later.
4256 (prog1 (cons var byte-compile-depth)
4257 (if (consp clause)
4258 (byte-compile-form (cadr clause))
4259 (byte-compile-push-constant nil)))))
4261 (defun byte-compile-not-lexical-var-p (var)
4262 (or (not (symbolp var))
4263 (special-variable-p var)
4264 (memq var byte-compile-bound-variables)
4265 (memq var '(nil t))
4266 (keywordp var)))
4268 (defun byte-compile-bind (var init-lexenv)
4269 "Emit byte-codes to bind VAR and update `byte-compile--lexical-environment'.
4270 INIT-LEXENV should be a lexical-environment alist describing the
4271 positions of the init value that have been pushed on the stack.
4272 Return non-nil if the TOS value was popped."
4273 ;; The mix of lexical and dynamic bindings mean that we may have to
4274 ;; juggle things on the stack, to move them to TOS for
4275 ;; dynamic binding.
4276 (if (and lexical-binding (not (byte-compile-not-lexical-var-p var)))
4277 ;; VAR is a simple stack-allocated lexical variable.
4278 (progn (push (assq var init-lexenv)
4279 byte-compile--lexical-environment)
4280 nil)
4281 ;; VAR should be dynamically bound.
4282 (while (assq var byte-compile--lexical-environment)
4283 ;; This dynamic binding shadows a lexical binding.
4284 (setq byte-compile--lexical-environment
4285 (remq (assq var byte-compile--lexical-environment)
4286 byte-compile--lexical-environment)))
4287 (cond
4288 ((eq var (caar init-lexenv))
4289 ;; VAR is dynamic and is on the top of the
4290 ;; stack, so we can just bind it like usual.
4291 (byte-compile-dynamic-variable-bind var)
4294 ;; VAR is dynamic, but we have to get its
4295 ;; value out of the middle of the stack.
4296 (let ((stack-pos (cdr (assq var init-lexenv))))
4297 (byte-compile-stack-ref stack-pos)
4298 (byte-compile-dynamic-variable-bind var)
4299 ;; Now we have to store nil into its temporary
4300 ;; stack position so it doesn't prevent the value from being GC'd.
4301 ;; FIXME: Not worth the trouble.
4302 ;; (byte-compile-push-constant nil)
4303 ;; (byte-compile-stack-set stack-pos)
4305 nil))))
4307 (defun byte-compile-unbind (clauses init-lexenv preserve-body-value)
4308 "Emit byte-codes to unbind the variables bound by CLAUSES.
4309 CLAUSES is a `let'-style variable binding list. INIT-LEXENV should be a
4310 lexical-environment alist describing the positions of the init value that
4311 have been pushed on the stack. If PRESERVE-BODY-VALUE is true,
4312 then an additional value on the top of the stack, above any lexical binding
4313 slots, is preserved, so it will be on the top of the stack after all
4314 binding slots have been popped."
4315 ;; Unbind dynamic variables.
4316 (let ((num-dynamic-bindings 0))
4317 (dolist (clause clauses)
4318 (unless (assq (if (consp clause) (car clause) clause)
4319 byte-compile--lexical-environment)
4320 (setq num-dynamic-bindings (1+ num-dynamic-bindings))))
4321 (unless (zerop num-dynamic-bindings)
4322 (byte-compile-out 'byte-unbind num-dynamic-bindings)))
4323 ;; Pop lexical variables off the stack, possibly preserving the
4324 ;; return value of the body.
4325 (when init-lexenv
4326 ;; INIT-LEXENV contains all init values left on the stack.
4327 (byte-compile-discard (length init-lexenv) preserve-body-value)))
4329 (defun byte-compile-let (form)
4330 "Generate code for the `let' or `let*' form FORM."
4331 (let ((clauses (cadr form))
4332 (init-lexenv nil)
4333 (is-let (eq (car form) 'let)))
4334 (when is-let
4335 ;; First compute the binding values in the old scope.
4336 (dolist (var clauses)
4337 (push (byte-compile-push-binding-init var) init-lexenv)))
4338 ;; New scope.
4339 (let ((byte-compile-bound-variables byte-compile-bound-variables)
4340 (byte-compile--lexical-environment
4341 byte-compile--lexical-environment))
4342 ;; Bind the variables.
4343 ;; For `let', do it in reverse order, because it makes no
4344 ;; semantic difference, but it is a lot more efficient since the
4345 ;; values are now in reverse order on the stack.
4346 (dolist (var (if is-let (reverse clauses) clauses))
4347 (unless is-let
4348 (push (byte-compile-push-binding-init var) init-lexenv))
4349 (let ((var (if (consp var) (car var) var)))
4350 (if (byte-compile-bind var init-lexenv)
4351 (pop init-lexenv))))
4352 ;; Emit the body.
4353 (let ((init-stack-depth byte-compile-depth))
4354 (byte-compile-body-do-effect (cdr (cdr form)))
4355 ;; Unbind both lexical and dynamic variables.
4356 (cl-assert (or (eq byte-compile-depth init-stack-depth)
4357 (eq byte-compile-depth (1+ init-stack-depth))))
4358 (byte-compile-unbind clauses init-lexenv
4359 (> byte-compile-depth init-stack-depth))))))
4363 (byte-defop-compiler-1 /= byte-compile-negated)
4364 (byte-defop-compiler-1 atom byte-compile-negated)
4365 (byte-defop-compiler-1 nlistp byte-compile-negated)
4367 (put '/= 'byte-compile-negated-op '=)
4368 (put 'atom 'byte-compile-negated-op 'consp)
4369 (put 'nlistp 'byte-compile-negated-op 'listp)
4371 (defun byte-compile-negated (form)
4372 (byte-compile-form-do-effect (byte-compile-negation-optimizer form)))
4374 ;; Even when optimization is off, /= is optimized to (not (= ...)).
4375 (defun byte-compile-negation-optimizer (form)
4376 ;; an optimizer for forms where <form1> is less efficient than (not <form2>)
4377 (byte-compile-set-symbol-position (car form))
4378 (list 'not
4379 (cons (or (get (car form) 'byte-compile-negated-op)
4380 (error
4381 "Compiler error: `%s' has no `byte-compile-negated-op' property"
4382 (car form)))
4383 (cdr form))))
4385 ;;; other tricky macro-like special-forms
4387 (byte-defop-compiler-1 catch)
4388 (byte-defop-compiler-1 unwind-protect)
4389 (byte-defop-compiler-1 condition-case)
4390 (byte-defop-compiler-1 save-excursion)
4391 (byte-defop-compiler-1 save-current-buffer)
4392 (byte-defop-compiler-1 save-restriction)
4393 ;; (byte-defop-compiler-1 save-window-excursion) ;Obsolete: now a macro.
4394 ;; (byte-defop-compiler-1 with-output-to-temp-buffer) ;Obsolete: now a macro.
4396 (defvar byte-compile--use-old-handlers nil
4397 "If nil, use new byte codes introduced in Emacs-24.4.")
4399 (defun byte-compile-catch (form)
4400 (byte-compile-form (car (cdr form)))
4401 (if (not byte-compile--use-old-handlers)
4402 (let ((endtag (byte-compile-make-tag)))
4403 (byte-compile-goto 'byte-pushcatch endtag)
4404 (byte-compile-body (cddr form) nil)
4405 (byte-compile-out 'byte-pophandler)
4406 (byte-compile-out-tag endtag))
4407 (pcase (cddr form)
4408 (`(:fun-body ,f)
4409 (byte-compile-form `(list 'funcall ,f)))
4410 (body
4411 (byte-compile-push-constant
4412 (byte-compile-top-level (cons 'progn body) byte-compile--for-effect))))
4413 (byte-compile-out 'byte-catch 0)))
4415 (defun byte-compile-unwind-protect (form)
4416 (pcase (cddr form)
4417 (`(:fun-body ,f)
4418 (byte-compile-form
4419 (if byte-compile--use-old-handlers `(list (list 'funcall ,f)) f)))
4420 (handlers
4421 (if byte-compile--use-old-handlers
4422 (byte-compile-push-constant
4423 (byte-compile-top-level-body handlers t))
4424 (byte-compile-form `#'(lambda () ,@handlers)))))
4425 (byte-compile-out 'byte-unwind-protect 0)
4426 (byte-compile-form-do-effect (car (cdr form)))
4427 (byte-compile-out 'byte-unbind 1))
4429 (defun byte-compile-condition-case (form)
4430 (if byte-compile--use-old-handlers
4431 (byte-compile-condition-case--old form)
4432 (byte-compile-condition-case--new form)))
4434 (defun byte-compile-condition-case--old (form)
4435 (let* ((var (nth 1 form))
4436 (fun-bodies (eq var :fun-body))
4437 (byte-compile-bound-variables
4438 (if (and var (not fun-bodies))
4439 (cons var byte-compile-bound-variables)
4440 byte-compile-bound-variables)))
4441 (byte-compile-set-symbol-position 'condition-case)
4442 (unless (symbolp var)
4443 (byte-compile-warn
4444 "`%s' is not a variable-name or nil (in condition-case)" var))
4445 (if fun-bodies (setq var (make-symbol "err")))
4446 (byte-compile-push-constant var)
4447 (if fun-bodies
4448 (byte-compile-form `(list 'funcall ,(nth 2 form)))
4449 (byte-compile-push-constant
4450 (byte-compile-top-level (nth 2 form) byte-compile--for-effect)))
4451 (let ((compiled-clauses
4452 (mapcar
4453 (lambda (clause)
4454 (let ((condition (car clause)))
4455 (cond ((not (or (symbolp condition)
4456 (and (listp condition)
4457 (let ((ok t))
4458 (dolist (sym condition)
4459 (if (not (symbolp sym))
4460 (setq ok nil)))
4461 ok))))
4462 (byte-compile-warn
4463 "`%S' is not a condition name or list of such (in condition-case)"
4464 condition))
4465 ;; (not (or (eq condition 't)
4466 ;; (and (stringp (get condition 'error-message))
4467 ;; (consp (get condition
4468 ;; 'error-conditions)))))
4469 ;; (byte-compile-warn
4470 ;; "`%s' is not a known condition name
4471 ;; (in condition-case)"
4472 ;; condition))
4474 (if fun-bodies
4475 `(list ',condition (list 'funcall ,(cadr clause) ',var))
4476 (cons condition
4477 (byte-compile-top-level-body
4478 (cdr clause) byte-compile--for-effect)))))
4479 (cdr (cdr (cdr form))))))
4480 (if fun-bodies
4481 (byte-compile-form `(list ,@compiled-clauses))
4482 (byte-compile-push-constant compiled-clauses)))
4483 (byte-compile-out 'byte-condition-case 0)))
4485 (defun byte-compile-condition-case--new (form)
4486 (let* ((var (nth 1 form))
4487 (body (nth 2 form))
4488 (depth byte-compile-depth)
4489 (clauses (mapcar (lambda (clause)
4490 (cons (byte-compile-make-tag) clause))
4491 (nthcdr 3 form)))
4492 (endtag (byte-compile-make-tag)))
4493 (byte-compile-set-symbol-position 'condition-case)
4494 (unless (symbolp var)
4495 (byte-compile-warn
4496 "`%s' is not a variable-name or nil (in condition-case)" var))
4498 (dolist (clause (reverse clauses))
4499 (let ((condition (nth 1 clause)))
4500 (unless (consp condition) (setq condition (list condition)))
4501 (dolist (c condition)
4502 (unless (and c (symbolp c))
4503 (byte-compile-warn
4504 "`%S' is not a condition name (in condition-case)" c))
4505 ;; In reality, the `error-conditions' property is only required
4506 ;; for the argument to `signal', not to `condition-case'.
4507 ;;(unless (consp (get c 'error-conditions))
4508 ;; (byte-compile-warn
4509 ;; "`%s' is not a known condition name (in condition-case)"
4510 ;; c))
4512 (byte-compile-push-constant condition))
4513 (byte-compile-goto 'byte-pushconditioncase (car clause)))
4515 (byte-compile-form body) ;; byte-compile--for-effect
4516 (dolist (_ clauses) (byte-compile-out 'byte-pophandler))
4517 (byte-compile-goto 'byte-goto endtag)
4519 (while clauses
4520 (let ((clause (pop clauses))
4521 (byte-compile-bound-variables byte-compile-bound-variables)
4522 (byte-compile--lexical-environment
4523 byte-compile--lexical-environment))
4524 (setq byte-compile-depth (1+ depth))
4525 (byte-compile-out-tag (pop clause))
4526 (dolist (_ clauses) (byte-compile-out 'byte-pophandler))
4527 (cond
4528 ((null var) (byte-compile-discard))
4529 (lexical-binding
4530 (push (cons var (1- byte-compile-depth))
4531 byte-compile--lexical-environment))
4532 (t (byte-compile-dynamic-variable-bind var)))
4533 (byte-compile-body (cdr clause)) ;; byte-compile--for-effect
4534 (cond
4535 ((null var) nil)
4536 (lexical-binding (byte-compile-discard 1 'preserve-tos))
4537 (t (byte-compile-out 'byte-unbind 1)))
4538 (byte-compile-goto 'byte-goto endtag)))
4540 (byte-compile-out-tag endtag)))
4542 (defun byte-compile-save-excursion (form)
4543 (if (and (eq 'set-buffer (car-safe (car-safe (cdr form))))
4544 (byte-compile-warning-enabled-p 'suspicious))
4545 (byte-compile-warn
4546 "Use `with-current-buffer' rather than save-excursion+set-buffer"))
4547 (byte-compile-out 'byte-save-excursion 0)
4548 (byte-compile-body-do-effect (cdr form))
4549 (byte-compile-out 'byte-unbind 1))
4551 (defun byte-compile-save-restriction (form)
4552 (byte-compile-out 'byte-save-restriction 0)
4553 (byte-compile-body-do-effect (cdr form))
4554 (byte-compile-out 'byte-unbind 1))
4556 (defun byte-compile-save-current-buffer (form)
4557 (byte-compile-out 'byte-save-current-buffer 0)
4558 (byte-compile-body-do-effect (cdr form))
4559 (byte-compile-out 'byte-unbind 1))
4561 ;;; top-level forms elsewhere
4563 (byte-defop-compiler-1 defvar)
4564 (byte-defop-compiler-1 defconst byte-compile-defvar)
4565 (byte-defop-compiler-1 autoload)
4566 (byte-defop-compiler-1 lambda byte-compile-lambda-form)
4568 ;; If foo.el declares `toto' as obsolete, it is likely that foo.el will
4569 ;; actually use `toto' in order for this obsolete variable to still work
4570 ;; correctly, so paradoxically, while byte-compiling foo.el, the presence
4571 ;; of a make-obsolete-variable call for `toto' is an indication that `toto'
4572 ;; should not trigger obsolete-warnings in foo.el.
4573 (byte-defop-compiler-1 make-obsolete-variable)
4574 (defun byte-compile-make-obsolete-variable (form)
4575 (when (eq 'quote (car-safe (nth 1 form)))
4576 (push (nth 1 (nth 1 form)) byte-compile-global-not-obsolete-vars))
4577 (byte-compile-normal-call form))
4579 (defconst byte-compile-tmp-var (make-symbol "def-tmp-var"))
4581 (defun byte-compile-defvar (form)
4582 ;; This is not used for file-level defvar/consts.
4583 (when (and (symbolp (nth 1 form))
4584 (not (string-match "[-*/:$]" (symbol-name (nth 1 form))))
4585 (byte-compile-warning-enabled-p 'lexical))
4586 (byte-compile-warn "global/dynamic var `%s' lacks a prefix"
4587 (nth 1 form)))
4588 (let ((fun (nth 0 form))
4589 (var (nth 1 form))
4590 (value (nth 2 form))
4591 (string (nth 3 form)))
4592 (byte-compile-set-symbol-position fun)
4593 (when (or (> (length form) 4)
4594 (and (eq fun 'defconst) (null (cddr form))))
4595 (let ((ncall (length (cdr form))))
4596 (byte-compile-warn
4597 "`%s' called with %d argument%s, but %s %s"
4598 fun ncall
4599 (if (= 1 ncall) "" "s")
4600 (if (< ncall 2) "requires" "accepts only")
4601 "2-3")))
4602 (push var byte-compile-bound-variables)
4603 (if (eq fun 'defconst)
4604 (push var byte-compile-const-variables))
4605 (when (and string (not (stringp string)))
4606 (byte-compile-warn "third arg to `%s %s' is not a string: %s"
4607 fun var string))
4608 (byte-compile-form-do-effect
4609 (if (cddr form) ; `value' provided
4610 ;; Quote with `quote' to prevent byte-compiling the body,
4611 ;; which would lead to an inf-loop.
4612 `(funcall '(lambda (,byte-compile-tmp-var)
4613 (,fun ,var ,byte-compile-tmp-var ,@(nthcdr 3 form)))
4614 ,value)
4615 (if (eq fun 'defconst)
4616 ;; This will signal an appropriate error at runtime.
4617 `(eval ',form)
4618 ;; A simple (defvar foo) just returns foo.
4619 `',var)))))
4621 (defun byte-compile-autoload (form)
4622 (byte-compile-set-symbol-position 'autoload)
4623 (and (macroexp-const-p (nth 1 form))
4624 (macroexp-const-p (nth 5 form))
4625 (memq (eval (nth 5 form)) '(t macro)) ; macro-p
4626 (not (fboundp (eval (nth 1 form))))
4627 (byte-compile-warn
4628 "The compiler ignores `autoload' except at top level. You should
4629 probably put the autoload of the macro `%s' at top-level."
4630 (eval (nth 1 form))))
4631 (byte-compile-normal-call form))
4633 ;; Lambdas in valid places are handled as special cases by various code.
4634 ;; The ones that remain are errors.
4635 (defun byte-compile-lambda-form (_form)
4636 (byte-compile-set-symbol-position 'lambda)
4637 (error "`lambda' used as function name is invalid"))
4639 ;; Compile normally, but deal with warnings for the function being defined.
4640 (put 'defalias 'byte-hunk-handler 'byte-compile-file-form-defalias)
4641 ;; Used for eieio--defalias as well.
4642 (defun byte-compile-file-form-defalias (form)
4643 ;; For the compilation itself, we could largely get rid of this hunk-handler,
4644 ;; if it weren't for the fact that we need to figure out when a defalias
4645 ;; defines a macro, so as to add it to byte-compile-macro-environment.
4647 ;; FIXME: we also use this hunk-handler to implement the function's dynamic
4648 ;; docstring feature. We could actually implement it more elegantly in
4649 ;; byte-compile-lambda so it applies to all lambdas, but the problem is that
4650 ;; the resulting .elc format will not be recognized by make-docfile, so
4651 ;; either we stop using DOC for the docstrings of preloaded elc files (at the
4652 ;; cost of around 24KB on 32bit hosts, double on 64bit hosts) or we need to
4653 ;; build DOC in a more clever way (e.g. handle anonymous elements).
4654 (let ((byte-compile-free-references nil)
4655 (byte-compile-free-assignments nil))
4656 (pcase form
4657 ;; Decompose `form' into:
4658 ;; - `name' is the name of the defined function.
4659 ;; - `arg' is the expression to which it is defined.
4660 ;; - `rest' is the rest of the arguments.
4661 (`(,_ ',name ,arg . ,rest)
4662 (pcase-let*
4663 ;; `macro' is non-nil if it defines a macro.
4664 ;; `fun' is the function part of `arg' (defaults to `arg').
4665 (((or (and (or `(cons 'macro ,fun) `'(macro . ,fun)) (let macro t))
4666 (and (let fun arg) (let macro nil)))
4667 arg)
4668 ;; `lam' is the lambda expression in `fun' (or nil if not
4669 ;; recognized).
4670 ((or `(,(or `quote `function) ,lam) (let lam nil))
4671 fun)
4672 ;; `arglist' is the list of arguments (or t if not recognized).
4673 ;; `body' is the body of `lam' (or t if not recognized).
4674 ((or `(lambda ,arglist . ,body)
4675 ;; `(closure ,_ ,arglist . ,body)
4676 (and `(internal-make-closure ,arglist . ,_) (let body t))
4677 (and (let arglist t) (let body t)))
4678 lam))
4679 (unless (byte-compile-file-form-defmumble
4680 name macro arglist body rest)
4681 (when macro
4682 (if (null fun)
4683 (message "Macro %s unrecognized, won't work in file" name)
4684 (message "Macro %s partly recognized, trying our luck" name)
4685 (push (cons name (eval fun))
4686 byte-compile-macro-environment)))
4687 (byte-compile-keep-pending form))))
4689 ;; We used to just do: (byte-compile-normal-call form)
4690 ;; But it turns out that this fails to optimize the code.
4691 ;; So instead we now do the same as what other byte-hunk-handlers do,
4692 ;; which is to call back byte-compile-file-form and then return nil.
4693 ;; Except that we can't just call byte-compile-file-form since it would
4694 ;; call us right back.
4695 (_ (byte-compile-keep-pending form)))))
4697 (byte-defop-compiler-1 with-no-warnings byte-compile-no-warnings)
4698 (defun byte-compile-no-warnings (form)
4699 (let (byte-compile-warnings)
4700 (byte-compile-form (cons 'progn (cdr form)))))
4702 ;; Warn about misuses of make-variable-buffer-local.
4703 (byte-defop-compiler-1 make-variable-buffer-local
4704 byte-compile-make-variable-buffer-local)
4705 (defun byte-compile-make-variable-buffer-local (form)
4706 (if (and (eq (car-safe (car-safe (cdr-safe form))) 'quote)
4707 (byte-compile-warning-enabled-p 'make-local))
4708 (byte-compile-warn
4709 "`make-variable-buffer-local' not called at toplevel"))
4710 (byte-compile-normal-call form))
4711 (put 'make-variable-buffer-local
4712 'byte-hunk-handler 'byte-compile-form-make-variable-buffer-local)
4713 (defun byte-compile-form-make-variable-buffer-local (form)
4714 (byte-compile-keep-pending form 'byte-compile-normal-call))
4716 ;;; tags
4718 ;; Note: Most operations will strip off the 'TAG, but it speeds up
4719 ;; optimization to have the 'TAG as a part of the tag.
4720 ;; Tags will be (TAG . (tag-number . stack-depth)).
4721 (defun byte-compile-make-tag ()
4722 (list 'TAG (setq byte-compile-tag-number (1+ byte-compile-tag-number))))
4725 (defun byte-compile-out-tag (tag)
4726 (setq byte-compile-output (cons tag byte-compile-output))
4727 (if (cdr (cdr tag))
4728 (progn
4729 ;; ## remove this someday
4730 (and byte-compile-depth
4731 (not (= (cdr (cdr tag)) byte-compile-depth))
4732 (error "Compiler bug: depth conflict at tag %d" (car (cdr tag))))
4733 (setq byte-compile-depth (cdr (cdr tag))))
4734 (setcdr (cdr tag) byte-compile-depth)))
4736 (defun byte-compile-goto (opcode tag)
4737 (push (cons opcode tag) byte-compile-output)
4738 (setcdr (cdr tag) (if (memq opcode byte-goto-always-pop-ops)
4739 (1- byte-compile-depth)
4740 byte-compile-depth))
4741 (setq byte-compile-depth (and (not (eq opcode 'byte-goto))
4742 (1- byte-compile-depth))))
4744 (defun byte-compile-stack-adjustment (op operand)
4745 "Return the amount by which an operation adjusts the stack.
4746 OP and OPERAND are as passed to `byte-compile-out'."
4747 (if (memq op '(byte-call byte-discardN byte-discardN-preserve-tos))
4748 ;; For calls, OPERAND is the number of args, so we pop OPERAND + 1
4749 ;; elements, and the push the result, for a total of -OPERAND.
4750 ;; For discardN*, of course, we just pop OPERAND elements.
4751 (- operand)
4752 (or (aref byte-stack+-info (symbol-value op))
4753 ;; Ops with a nil entry in `byte-stack+-info' are byte-codes
4754 ;; that take OPERAND values off the stack and push a result, for
4755 ;; a total of 1 - OPERAND
4756 (- 1 operand))))
4758 (defun byte-compile-out (op &optional operand)
4759 (push (cons op operand) byte-compile-output)
4760 (if (eq op 'byte-return)
4761 ;; This is actually an unnecessary case, because there should be no
4762 ;; more ops behind byte-return.
4763 (setq byte-compile-depth nil)
4764 (setq byte-compile-depth
4765 (+ byte-compile-depth (byte-compile-stack-adjustment op operand)))
4766 (setq byte-compile-maxdepth (max byte-compile-depth byte-compile-maxdepth))
4767 ;;(if (< byte-compile-depth 0) (error "Compiler error: stack underflow"))
4770 ;;; call tree stuff
4772 (defun byte-compile-annotate-call-tree (form)
4773 (let (entry)
4774 ;; annotate the current call
4775 (if (setq entry (assq (car form) byte-compile-call-tree))
4776 (or (memq byte-compile-current-form (nth 1 entry)) ;callers
4777 (setcar (cdr entry)
4778 (cons byte-compile-current-form (nth 1 entry))))
4779 (setq byte-compile-call-tree
4780 (cons (list (car form) (list byte-compile-current-form) nil)
4781 byte-compile-call-tree)))
4782 ;; annotate the current function
4783 (if (setq entry (assq byte-compile-current-form byte-compile-call-tree))
4784 (or (memq (car form) (nth 2 entry)) ;called
4785 (setcar (cdr (cdr entry))
4786 (cons (car form) (nth 2 entry))))
4787 (setq byte-compile-call-tree
4788 (cons (list byte-compile-current-form nil (list (car form)))
4789 byte-compile-call-tree)))
4792 ;; Renamed from byte-compile-report-call-tree
4793 ;; to avoid interfering with completion of byte-compile-file.
4794 ;;;###autoload
4795 (defun display-call-tree (&optional filename)
4796 "Display a call graph of a specified file.
4797 This lists which functions have been called, what functions called
4798 them, and what functions they call. The list includes all functions
4799 whose definitions have been compiled in this Emacs session, as well as
4800 all functions called by those functions.
4802 The call graph does not include macros, inline functions, or
4803 primitives that the byte-code interpreter knows about directly
4804 \(`eq', `cons', etc.).
4806 The call tree also lists those functions which are not known to be called
4807 \(that is, to which no calls have been compiled), and which cannot be
4808 invoked interactively."
4809 (interactive)
4810 (message "Generating call tree...")
4811 (with-output-to-temp-buffer "*Call-Tree*"
4812 (set-buffer "*Call-Tree*")
4813 (erase-buffer)
4814 (message "Generating call tree... (sorting on %s)"
4815 byte-compile-call-tree-sort)
4816 (insert "Call tree for "
4817 (cond ((null byte-compile-current-file) (or filename "???"))
4818 ((stringp byte-compile-current-file)
4819 byte-compile-current-file)
4820 (t (buffer-name byte-compile-current-file)))
4821 " sorted on "
4822 (prin1-to-string byte-compile-call-tree-sort)
4823 ":\n\n")
4824 (if byte-compile-call-tree-sort
4825 (setq byte-compile-call-tree
4826 (sort byte-compile-call-tree
4827 (pcase byte-compile-call-tree-sort
4828 (`callers
4829 (lambda (x y) (< (length (nth 1 x))
4830 (length (nth 1 y)))))
4831 (`calls
4832 (lambda (x y) (< (length (nth 2 x))
4833 (length (nth 2 y)))))
4834 (`calls+callers
4835 (lambda (x y) (< (+ (length (nth 1 x))
4836 (length (nth 2 x)))
4837 (+ (length (nth 1 y))
4838 (length (nth 2 y))))))
4839 (`name
4840 (lambda (x y) (string< (car x) (car y))))
4841 (_ (error "`byte-compile-call-tree-sort': `%s' - unknown sort mode"
4842 byte-compile-call-tree-sort))))))
4843 (message "Generating call tree...")
4844 (let ((rest byte-compile-call-tree)
4845 (b (current-buffer))
4847 callers calls)
4848 (while rest
4849 (prin1 (car (car rest)) b)
4850 (setq callers (nth 1 (car rest))
4851 calls (nth 2 (car rest)))
4852 (insert "\t"
4853 (cond ((not (fboundp (setq f (car (car rest)))))
4854 (if (null f)
4855 " <top level>";; shouldn't insert nil then, actually -sk
4856 " <not defined>"))
4857 ((subrp (setq f (symbol-function f)))
4858 " <subr>")
4859 ((symbolp f)
4860 (format " ==> %s" f))
4861 ((byte-code-function-p f)
4862 "<compiled function>")
4863 ((not (consp f))
4864 "<malformed function>")
4865 ((eq 'macro (car f))
4866 (if (or (byte-code-function-p (cdr f))
4867 (assq 'byte-code (cdr (cdr (cdr f)))))
4868 " <compiled macro>"
4869 " <macro>"))
4870 ((assq 'byte-code (cdr (cdr f)))
4871 "<compiled lambda>")
4872 ((eq 'lambda (car f))
4873 "<function>")
4874 (t "???"))
4875 (format " (%d callers + %d calls = %d)"
4876 ;; Does the optimizer eliminate common subexpressions?-sk
4877 (length callers)
4878 (length calls)
4879 (+ (length callers) (length calls)))
4880 "\n")
4881 (if callers
4882 (progn
4883 (insert " called by:\n")
4884 (setq p (point))
4885 (insert " " (if (car callers)
4886 (mapconcat 'symbol-name callers ", ")
4887 "<top level>"))
4888 (let ((fill-prefix " "))
4889 (fill-region-as-paragraph p (point)))
4890 (unless (= 0 (current-column))
4891 (insert "\n"))))
4892 (if calls
4893 (progn
4894 (insert " calls:\n")
4895 (setq p (point))
4896 (insert " " (mapconcat 'symbol-name calls ", "))
4897 (let ((fill-prefix " "))
4898 (fill-region-as-paragraph p (point)))
4899 (unless (= 0 (current-column))
4900 (insert "\n"))))
4901 (setq rest (cdr rest)))
4903 (message "Generating call tree...(finding uncalled functions...)")
4904 (setq rest byte-compile-call-tree)
4905 (let (uncalled def)
4906 (while rest
4907 (or (nth 1 (car rest))
4908 (null (setq f (caar rest)))
4909 (progn
4910 (setq def (byte-compile-fdefinition f t))
4911 (and (eq (car-safe def) 'macro)
4912 (eq (car-safe (cdr-safe def)) 'lambda)
4913 (setq def (cdr def)))
4914 (functionp def))
4915 (progn
4916 (setq def (byte-compile-fdefinition f nil))
4917 (and (eq (car-safe def) 'macro)
4918 (eq (car-safe (cdr-safe def)) 'lambda)
4919 (setq def (cdr def)))
4920 (commandp def))
4921 (setq uncalled (cons f uncalled)))
4922 (setq rest (cdr rest)))
4923 (if uncalled
4924 (let ((fill-prefix " "))
4925 (insert "Noninteractive functions not known to be called:\n ")
4926 (setq p (point))
4927 (insert (mapconcat 'symbol-name (nreverse uncalled) ", "))
4928 (fill-region-as-paragraph p (point))))))
4929 (message "Generating call tree...done.")))
4932 ;;;###autoload
4933 (defun batch-byte-compile-if-not-done ()
4934 "Like `byte-compile-file' but doesn't recompile if already up to date.
4935 Use this from the command line, with `-batch';
4936 it won't work in an interactive Emacs."
4937 (batch-byte-compile t))
4939 ;;; by crl@newton.purdue.edu
4940 ;;; Only works noninteractively.
4941 ;;;###autoload
4942 (defun batch-byte-compile (&optional noforce)
4943 "Run `byte-compile-file' on the files remaining on the command line.
4944 Use this from the command line, with `-batch';
4945 it won't work in an interactive Emacs.
4946 Each file is processed even if an error occurred previously.
4947 For example, invoke \"emacs -batch -f batch-byte-compile $emacs/ ~/*.el\".
4948 If NOFORCE is non-nil, don't recompile a file that seems to be
4949 already up-to-date."
4950 ;; command-line-args-left is what is left of the command line, from
4951 ;; startup.el.
4952 (defvar command-line-args-left) ;Avoid 'free variable' warning
4953 (if (not noninteractive)
4954 (error "`batch-byte-compile' is to be used only with -batch"))
4955 ;; Better crash loudly than attempting to recover from undefined
4956 ;; behavior.
4957 (setq attempt-stack-overflow-recovery nil
4958 attempt-orderly-shutdown-on-fatal-signal nil)
4959 (let ((error nil))
4960 (while command-line-args-left
4961 (if (file-directory-p (expand-file-name (car command-line-args-left)))
4962 ;; Directory as argument.
4963 (let (source dest)
4964 (dolist (file (directory-files (car command-line-args-left)))
4965 (if (and (string-match emacs-lisp-file-regexp file)
4966 (not (auto-save-file-name-p file))
4967 (setq source
4968 (expand-file-name file
4969 (car command-line-args-left)))
4970 (setq dest (byte-compile-dest-file source))
4971 (file-exists-p dest)
4972 (file-newer-than-file-p source dest))
4973 (if (null (batch-byte-compile-file source))
4974 (setq error t)))))
4975 ;; Specific file argument
4976 (if (or (not noforce)
4977 (let* ((source (car command-line-args-left))
4978 (dest (byte-compile-dest-file source)))
4979 (or (not (file-exists-p dest))
4980 (file-newer-than-file-p source dest))))
4981 (if (null (batch-byte-compile-file (car command-line-args-left)))
4982 (setq error t))))
4983 (setq command-line-args-left (cdr command-line-args-left)))
4984 (kill-emacs (if error 1 0))))
4986 (defun batch-byte-compile-file (file)
4987 (let ((byte-compile-root-dir (or byte-compile-root-dir default-directory)))
4988 (if debug-on-error
4989 (byte-compile-file file)
4990 (condition-case err
4991 (byte-compile-file file)
4992 (file-error
4993 (message (if (cdr err)
4994 ">>Error occurred processing %s: %s (%s)"
4995 ">>Error occurred processing %s: %s")
4996 file
4997 (get (car err) 'error-message)
4998 (prin1-to-string (cdr err)))
4999 (let ((destfile (byte-compile-dest-file file)))
5000 (if (file-exists-p destfile)
5001 (delete-file destfile)))
5002 nil)
5003 (error
5004 (message (if (cdr err)
5005 ">>Error occurred processing %s: %s (%s)"
5006 ">>Error occurred processing %s: %s")
5007 file
5008 (get (car err) 'error-message)
5009 (prin1-to-string (cdr err)))
5010 nil)))))
5012 (defun byte-compile-refresh-preloaded ()
5013 "Reload any Lisp file that was changed since Emacs was dumped.
5014 Use with caution."
5015 (let* ((argv0 (car command-line-args))
5016 (emacs-file (executable-find argv0)))
5017 (if (not (and emacs-file (file-executable-p emacs-file)))
5018 (message "Can't find %s to refresh preloaded Lisp files" argv0)
5019 (dolist (f (reverse load-history))
5020 (setq f (car f))
5021 (if (string-match "elc\\'" f) (setq f (substring f 0 -1)))
5022 (when (and (file-readable-p f)
5023 (file-newer-than-file-p f emacs-file)
5024 ;; Don't reload the source version of the files below
5025 ;; because that causes subsequent byte-compilation to
5026 ;; be a lot slower and need a higher max-lisp-eval-depth,
5027 ;; so it can cause recompilation to fail.
5028 (not (member (file-name-nondirectory f)
5029 '("pcase.el" "bytecomp.el" "macroexp.el"
5030 "cconv.el" "byte-opt.el"))))
5031 (message "Reloading stale %s" (file-name-nondirectory f))
5032 (condition-case nil
5033 (load f 'noerror nil 'nosuffix)
5034 ;; Probably shouldn't happen, but in case of an error, it seems
5035 ;; at least as useful to ignore it as it is to stop compilation.
5036 (error nil)))))))
5038 ;;;###autoload
5039 (defun batch-byte-recompile-directory (&optional arg)
5040 "Run `byte-recompile-directory' on the dirs remaining on the command line.
5041 Must be used only with `-batch', and kills Emacs on completion.
5042 For example, invoke `emacs -batch -f batch-byte-recompile-directory .'.
5044 Optional argument ARG is passed as second argument ARG to
5045 `byte-recompile-directory'; see there for its possible values
5046 and corresponding effects."
5047 ;; command-line-args-left is what is left of the command line (startup.el)
5048 (defvar command-line-args-left) ;Avoid 'free variable' warning
5049 (if (not noninteractive)
5050 (error "batch-byte-recompile-directory is to be used only with -batch"))
5051 ;; Better crash loudly than attempting to recover from undefined
5052 ;; behavior.
5053 (setq attempt-stack-overflow-recovery nil
5054 attempt-orderly-shutdown-on-fatal-signal nil)
5055 (or command-line-args-left
5056 (setq command-line-args-left '(".")))
5057 (while command-line-args-left
5058 (byte-recompile-directory (car command-line-args-left) arg)
5059 (setq command-line-args-left (cdr command-line-args-left)))
5060 (kill-emacs 0))
5062 ;;; Core compiler macros.
5064 (put 'featurep 'compiler-macro
5065 (lambda (form feature &rest _ignore)
5066 ;; Emacs-21's byte-code doesn't run under XEmacs or SXEmacs anyway, so
5067 ;; we can safely optimize away this test.
5068 (if (member feature '('xemacs 'sxemacs 'emacs))
5069 (eval form)
5070 form)))
5072 (provide 'byte-compile)
5073 (provide 'bytecomp)
5076 ;;; report metering (see the hacks in bytecode.c)
5078 (defvar byte-code-meter)
5079 (defun byte-compile-report-ops ()
5080 (or (boundp 'byte-metering-on)
5081 (error "You must build Emacs with -DBYTE_CODE_METER to use this"))
5082 (with-output-to-temp-buffer "*Meter*"
5083 (set-buffer "*Meter*")
5084 (let ((i 0) n op off)
5085 (while (< i 256)
5086 (setq n (aref (aref byte-code-meter 0) i)
5087 off nil)
5088 (if t ;(not (zerop n))
5089 (progn
5090 (setq op i)
5091 (setq off nil)
5092 (cond ((< op byte-nth)
5093 (setq off (logand op 7))
5094 (setq op (logand op 248)))
5095 ((>= op byte-constant)
5096 (setq off (- op byte-constant)
5097 op byte-constant)))
5098 (setq op (aref byte-code-vector op))
5099 (insert (format "%-4d" i))
5100 (insert (symbol-name op))
5101 (if off (insert " [" (int-to-string off) "]"))
5102 (indent-to 40)
5103 (insert (int-to-string n) "\n")))
5104 (setq i (1+ i))))))
5106 ;; To avoid "lisp nesting exceeds max-lisp-eval-depth" when bytecomp compiles
5107 ;; itself, compile some of its most used recursive functions (at load time).
5109 (eval-when-compile
5110 (or (byte-code-function-p (symbol-function 'byte-compile-form))
5111 (assq 'byte-code (symbol-function 'byte-compile-form))
5112 (let ((byte-optimize nil) ; do it fast
5113 (byte-compile-warnings nil))
5114 (mapc (lambda (x)
5115 (or noninteractive (message "compiling %s..." x))
5116 (byte-compile x)
5117 (or noninteractive (message "compiling %s...done" x)))
5118 '(byte-compile-normal-call
5119 byte-compile-form
5120 byte-compile-body
5121 ;; Inserted some more than necessary, to speed it up.
5122 byte-compile-top-level
5123 byte-compile-out-toplevel
5124 byte-compile-constant
5125 byte-compile-variable-ref))))
5126 nil)
5128 (run-hooks 'bytecomp-load-hook)
5130 ;;; bytecomp.el ends here