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
6 ;; Author: Jamie Zawinski <jwz@lucid.com>
7 ;; Hallvard Furuseth <hbf@ulrik.uio.no>
8 ;; Maintainer: emacs-devel@gnu.org
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/>.
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.
36 ;; - Turn "not bound at runtime" functions into autoloads.
40 ;; ========================================================================
42 ;; byte-recompile-directory, byte-compile-file,
43 ;; byte-recompile-file,
44 ;; batch-byte-compile, batch-byte-recompile-directory,
45 ;; byte-compile, compile-defun,
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
55 ;; - compile-time evaluation of safe constant forms, such as (consp nil)
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
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
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
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
94 ;; (inline ;; `foo' and `baz' will be
95 ;; (foo 1 2 3 (bar 5)) ;; open-coded, but `bar' will not.
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
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.
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
)
135 (or (fboundp 'defsubst
)
136 ;; This really ought to be loaded already!
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."
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'."
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."
156 :type
'(choice (const nil
) function
)
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
)))
166 (funcall handler
'byte-compiler-base-file-name 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
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."
204 (defcustom byte-optimize t
205 "Enable optimization in the byte compiler.
207 nil - no optimization
208 t - all optimizations
209 `source' - source-level optimizations only
210 `byte' - code-level optimizations only"
212 :type
'(choice (const :tag
"none" nil
)
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'."
223 (defcustom byte-compile-cond-use-jump-table t
224 "Compile `cond' clauses to a jump table implementation (using a hash-table)."
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
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."
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'."
274 :type
'(choice (const :tag
"none" nil
)
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'."
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).
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."
315 :type
`(choice (const :tag
"All" t
)
316 (set :menu-tag
"Some"
317 ,@(mapcar (lambda (x) `(const ,x
))
318 byte-compile-warning-types
))))
321 (put 'byte-compile-warnings
'safe-local-variable
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
))))
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
)
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
)))))
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."
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
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
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."
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
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."
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
445 (setf form
(macroexp-macroexpand form byte-compile-macro-environment
))
446 (if (eq (car-safe form
) 'progn
)
448 (mapcar (lambda (subform)
449 (byte-compile-recurse-toplevel
450 subform non-toplevel-case
))
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
)
461 (byte-compile-recurse-toplevel
462 (macroexp-progn body
)
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"
470 (let ((byte-compile-unresolved-functions
471 byte-compile-unresolved-functions
)
472 (byte-compile-new-defuns
473 byte-compile-new-defuns
))
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
)
483 ;; Don't compile here, since we don't know
484 ;; whether to compile as byte-compile-form
485 ;; or byte-compile-file-form.
489 macroexpand-all-environment
)))
490 (eval expanded lexical-binding
)
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
))
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
)
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
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
)
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
)
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,
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,
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
)
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
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.")
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
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)
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
)
841 (error "Non-symbolic opcode `%s'" op
))
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.
852 (cond ((memq op byte-goto-ops
)
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
860 (eq op
'byte-constant
)))
861 (and (eq op
'byte-constant
)
864 (if (< off byte-constant-limit
)
865 (byte-compile-push-bytecodes (+ byte-constant off
)
867 (byte-compile-push-bytecode-const2 byte-constant2 off
869 ((and (= opcode byte-stack-set
)
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
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)))
885 (byte-compile-push-bytecodes opcode
(logior #x7f flag
)
887 (setq off
(- off
#x7f
)))
888 (byte-compile-push-bytecodes opcode
(logior off flag
)
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.
901 (byte-compile-push-bytecodes (+ opcode off
) bytes pc
))
903 (byte-compile-push-bytecodes (+ opcode
6) off bytes pc
))
905 (byte-compile-push-bytecode-const2 (+ opcode
7) off
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
)
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
))
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."
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
))
952 ;; Make sure the file was not already loaded before.
953 (unless (assoc (car xs
) hist-orig
)
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.
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
)
1006 (memq byte-optimize-log
'(t source
))
1007 (let ((print-escape-newlines t
)
1014 (lambda (x) (if (symbolp x
) (list 'prin1-to-string x
) x
))
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
)
1038 (while (and (cdr list
)
1039 (not (eq (cadr list
) elt
)))
1040 (setq list
(cdr list
)))
1042 (setcdr list
(cddr list
)))
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
)
1070 (setq entry
(assq sym read-symbol-positions-list
))
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
)))
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
)))
1111 (pos (if (and byte-compile-current-file
1112 (integerp byte-compile-read-position
))
1113 (with-current-buffer byte-compile-current-buffer
1116 (goto-char byte-compile-last-position
)
1117 (1+ (count-lines (point-min) (point-at-bol))))
1119 (goto-char byte-compile-last-position
)
1120 (1+ (current-column)))))
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
)))
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
)
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
)
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
))
1161 (insert (format-message "Leaving directory `%s'\n"
1162 default-directory
))))
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
)
1171 (buffer-name byte-compile-current-file
)))
1172 " at " (current-time-string) "\n")
1173 (insert "\f\nCompiling no file at " (current-time-string) "\n"))
1175 (setq default-directory dir
)
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)
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
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
))
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
))))
1240 (while (and (symbolp fn
)
1242 (or (symbolp (symbol-function fn
))
1243 (consp (symbol-function fn
))
1245 (byte-code-function-p (symbol-function fn
)))))
1246 (setq fn
(symbol-function fn
)))
1247 (let ((advertised (gethash (if (and (symbolp fn
) (fboundp fn
))
1249 (symbol-function fn
)
1251 advertised-signature-table t
)))
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
))
1261 ((eq 'autoload
(car fn
)) nil
)
1264 (defun byte-compile-arglist-signature (arglist)
1271 (cond ((eq (car arglist
) '&optional
)
1272 (or opts
(setq opts
0)))
1273 ((eq (car arglist
) '&rest
)
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
)))))
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
))
1296 (let ((sig (func-arity f
)))
1297 (if (numberp (cdr sig
)) sig
(list (car sig
))))
1300 (defun byte-compile-arglist-signatures-congruent-p (old new
)
1302 (> (car new
) (car old
)) ; requires more args now
1303 (and (null (cdr old
)) ; took rest-args, doesn't any more
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
1327 ;; It's a currently-undefined function.
1328 ;; Remember number of args in call.
1329 (let ((cons (assq f byte-compile-unresolved-functions
)))
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
))))
1347 (when (or (< ncall
(car sig
))
1348 (and (cdr sig
) (> ncall
(cdr sig
))))
1349 (byte-compile-set-symbol-position (car form
))
1351 "%s called with %d argument%s, but %s %s"
1353 (if (= 1 ncall
) "" "s")
1354 (if (< ncall
(car sig
))
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
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))
1374 (while (re-search-forward "%." nil t
)
1376 (unless (eq ?%
(char-after))
1377 (setq i
(if (looking-at "\\([0-9]+\\)\\$")
1378 (string-to-number (match-string 1) 10)
1383 (nargs (- (length form
) 2)))
1384 (unless (= nargs nfields
)
1386 "`%s' called with %d args to fill %d format field(s)" (car form
)
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
)))))
1396 (when (eq (car-safe name
) 'quote
)
1397 (or (not (eq (car form
) 'custom-declare-variable
))
1398 (plist-get keyword-args
:type
)
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
)
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
))))
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
))
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.
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"
1437 (setq sig
(byte-compile-arglist-signature arglist
)
1438 nums
(sort (copy-sequence (cdr calls
)) (function <))
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
)
1445 "%s being defined to take %s%s, but was previously called with %s"
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
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
)
1464 "%s %s used to take %s %s, now takes %s"
1465 (if macrop
"macro" "function")
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.
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.
1505 cl--compiling-file
))))
1506 (byte-compile-warn "function `%s' from cl package called at runtime"
1510 (defun byte-compile-print-syms (str1 strn syms
)
1512 (byte-compile-set-symbol-position (car syms
) t
))
1513 (cond ((and (cdr syms
) (not noninteractive
))
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
)))
1526 (byte-compile-warn "%s %s"
1528 (mapconcat #'symbol-name 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
)
1541 ;; Separate the functions that will not be available at runtime
1542 ;; from the truly unresolved ones.
1543 (dolist (f byte-compile-unresolved-functions
)
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:"
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:"
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
)
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 (overriding-plist-environment nil
)
1576 (byte-compile-function-environment nil
)
1577 (byte-compile-bound-variables nil
)
1578 (byte-compile-lexical-variables nil
)
1579 (byte-compile-const-variables nil
)
1580 (byte-compile-free-references nil
)
1581 (byte-compile-free-assignments nil
)
1583 ;; Close over these variables so that `byte-compiler-options'
1584 ;; can change them on a per-file basis.
1586 (byte-compile-verbose byte-compile-verbose
)
1587 (byte-optimize byte-optimize
)
1588 (byte-compile-dynamic byte-compile-dynamic
)
1589 (byte-compile-dynamic-docstrings
1590 byte-compile-dynamic-docstrings
)
1591 ;; (byte-compile-generate-emacs19-bytecodes
1592 ;; byte-compile-generate-emacs19-bytecodes)
1593 (byte-compile-warnings byte-compile-warnings
)
1597 (defmacro displaying-byte-compile-warnings
(&rest body
)
1599 `(let* ((--displaying-byte-compile-warnings-fn (lambda () ,@body
))
1600 (warning-series-started
1601 (and (markerp warning-series
)
1602 (eq (marker-buffer warning-series
)
1603 (get-buffer byte-compile-log-buffer
)))))
1604 (byte-compile-find-cl-functions)
1605 (if (or (eq warning-series
'byte-compile-warning-series
)
1606 warning-series-started
)
1607 ;; warning-series does come from compilation,
1608 ;; so don't bind it, but maybe do set it.
1610 ;; Log the file name. Record position of that text.
1611 (setq tem
(byte-compile-log-file))
1612 (unless warning-series-started
1613 (setq warning-series
(or tem
'byte-compile-warning-series
)))
1614 (if byte-compile-debug
1615 (funcall --displaying-byte-compile-warnings-fn
)
1616 (condition-case error-info
1617 (funcall --displaying-byte-compile-warnings-fn
)
1618 (error (byte-compile-report-error error-info
)))))
1619 ;; warning-series does not come from compilation, so bind it.
1620 (let ((warning-series
1621 ;; Log the file name. Record position of that text.
1622 (or (byte-compile-log-file) 'byte-compile-warning-series
)))
1623 (if byte-compile-debug
1624 (funcall --displaying-byte-compile-warnings-fn
)
1625 (condition-case error-info
1626 (funcall --displaying-byte-compile-warnings-fn
)
1627 (error (byte-compile-report-error error-info
))))))))
1630 (defun byte-force-recompile (directory)
1631 "Recompile every `.el' file in DIRECTORY that already has a `.elc' file.
1632 Files in subdirectories of DIRECTORY are processed also."
1633 (interactive "DByte force recompile (directory): ")
1634 (byte-recompile-directory directory nil t
))
1637 (defun byte-recompile-directory (directory &optional arg force
)
1638 "Recompile every `.el' file in DIRECTORY that needs recompilation.
1639 This happens when a `.elc' file exists but is older than the `.el' file.
1640 Files in subdirectories of DIRECTORY are processed also.
1642 If the `.elc' file does not exist, normally this function *does not*
1643 compile the corresponding `.el' file. However, if the prefix argument
1644 ARG is 0, that means do compile all those files. A nonzero
1645 ARG means ask the user, for each such `.el' file, whether to
1646 compile it. A nonzero ARG also means ask about each subdirectory
1649 If the third argument FORCE is non-nil, recompile every `.el' file
1650 that already has a `.elc' file."
1651 (interactive "DByte recompile directory: \nP")
1652 (if arg
(setq arg
(prefix-numeric-value arg
)))
1657 (let ((file (buffer-file-name)))
1659 (string-match-p emacs-lisp-file-regexp file
)
1660 (file-in-directory-p file directory
)))))
1661 (force-mode-line-update))
1662 (with-current-buffer (get-buffer-create byte-compile-log-buffer
)
1663 (setq default-directory
(expand-file-name directory
))
1664 ;; compilation-mode copies value of default-directory.
1665 (unless (eq major-mode
'compilation-mode
)
1667 (let ((directories (list default-directory
))
1668 (default-directory default-directory
)
1674 (displaying-byte-compile-warnings
1676 (setq directory
(car directories
))
1677 (message "Checking %s..." directory
)
1678 (dolist (file (directory-files directory
))
1679 (let ((source (expand-file-name file directory
)))
1680 (if (file-directory-p source
)
1681 (and (not (member file
'("RCS" "CVS")))
1682 (not (eq ?\.
(aref file
0)))
1683 (not (file-symlink-p source
))
1684 ;; This file is a subdirectory. Handle them differently.
1685 (or (null arg
) (eq 0 arg
)
1686 (y-or-n-p (concat "Check " source
"? ")))
1687 (setq directories
(nconc directories
(list source
))))
1688 ;; It is an ordinary file. Decide whether to compile it.
1689 (if (and (string-match emacs-lisp-file-regexp source
)
1690 ;; The next 2 tests avoid compiling lock files
1691 (file-readable-p source
)
1692 (not (string-match "\\`\\.#" file
))
1693 (not (auto-save-file-name-p source
))
1694 (not (string-equal dir-locals-file
1695 (file-name-nondirectory source
))))
1697 (pcase (byte-recompile-file source force arg
)
1698 (`no-byte-compile skip-count
)
1702 (message "Checking %s..." directory
))
1703 (if (not (eq last-dir directory
))
1704 (setq last-dir directory
1705 dir-count
(1+ dir-count
)))
1707 (setq directories
(cdr directories
))))
1708 (message "Done (Total of %d file%s compiled%s%s%s)"
1709 file-count
(if (= file-count
1) "" "s")
1710 (if (> fail-count
0) (format ", %d failed" fail-count
) "")
1711 (if (> skip-count
0) (format ", %d skipped" skip-count
) "")
1713 (format " in %d directories" dir-count
) "")))))
1715 (defvar no-byte-compile nil
1716 "Non-nil to prevent byte-compiling of Emacs Lisp code.
1717 This is normally set in local file variables at the end of the elisp file:
1719 \;; Local Variables:\n;; no-byte-compile: t\n;; End: ") ;Backslash for compile-main.
1720 ;;;###autoload(put 'no-byte-compile 'safe-local-variable 'booleanp)
1722 (defun byte-recompile-file (filename &optional force arg load
)
1723 "Recompile FILENAME file if it needs recompilation.
1724 This happens when its `.elc' file is older than itself.
1726 If the `.elc' file exists and is up-to-date, normally this function
1727 *does not* compile FILENAME. If the prefix argument FORCE is non-nil,
1728 however, it compiles FILENAME even if the destination already
1729 exists and is up-to-date.
1731 If the `.elc' file does not exist, normally this function *does not*
1732 compile FILENAME. If optional argument ARG is 0, it compiles
1733 the input file even if the `.elc' file does not exist.
1734 Any other non-nil value of ARG means to ask the user.
1736 If optional argument LOAD is non-nil, loads the file after compiling.
1738 If compilation is needed, this functions returns the result of
1739 `byte-compile-file'; otherwise it returns `no-byte-compile'."
1741 (let ((file buffer-file-name
)
1745 (derived-mode-p 'emacs-lisp-mode
)
1746 (setq file-name
(file-name-nondirectory file
)
1747 file-dir
(file-name-directory file
)))
1748 (list (read-file-name (if current-prefix-arg
1749 "Byte compile file: "
1750 "Byte recompile file: ")
1751 file-dir file-name nil
)
1752 current-prefix-arg
)))
1753 (let ((dest (byte-compile-dest-file filename
))
1754 ;; Expand now so we get the current buffer's defaults
1755 (filename (expand-file-name filename
)))
1756 (if (if (file-exists-p dest
)
1757 ;; File was already compiled
1758 ;; Compile if forced to, or filename newer
1760 (file-newer-than-file-p filename dest
))
1763 (y-or-n-p (concat "Compile "
1766 (if (and noninteractive
(not byte-compile-verbose
))
1767 (message "Compiling %s..." filename
))
1768 (byte-compile-file filename load
))
1770 (load (if (file-exists-p dest
) dest filename
)))
1773 (defvar byte-compile-level
0 ; bug#13787
1774 "Depth of a recursive byte compilation.")
1777 (defun byte-compile-file (filename &optional load
)
1778 "Compile a file of Lisp code named FILENAME into a file of byte code.
1779 The output file's name is generated by passing FILENAME to the
1780 function `byte-compile-dest-file' (which see).
1781 With prefix arg (noninteractively: 2nd arg), LOAD the file after compiling.
1782 The value is non-nil if there were no errors, nil if errors."
1783 ;; (interactive "fByte compile file: \nP")
1785 (let ((file buffer-file-name
)
1788 (derived-mode-p 'emacs-lisp-mode
)
1789 (setq file-dir
(file-name-directory file
)))
1790 (list (read-file-name (if current-prefix-arg
1791 "Byte compile and load file: "
1792 "Byte compile file: ")
1793 file-dir buffer-file-name nil
)
1794 current-prefix-arg
)))
1795 ;; Expand now so we get the current buffer's defaults
1796 (setq filename
(expand-file-name filename
))
1798 ;; If we're compiling a file that's in a buffer and is modified, offer
1799 ;; to save it first.
1801 (let ((b (get-file-buffer (expand-file-name filename
))))
1802 (if (and b
(buffer-modified-p b
)
1803 (y-or-n-p (format "Save buffer %s first? " (buffer-name b
))))
1804 (with-current-buffer b
(save-buffer)))))
1806 ;; Force logging of the file name for each file compiled.
1807 (setq byte-compile-last-logged-file nil
)
1808 (let ((byte-compile-current-file filename
)
1809 (byte-compile-current-group nil
)
1810 (set-auto-coding-for-load t
)
1811 target-file input-buffer output-buffer
1812 byte-compile-dest-file
)
1813 (setq target-file
(byte-compile-dest-file filename
))
1814 (setq byte-compile-dest-file target-file
)
1815 (with-current-buffer
1816 ;; It would be cleaner to use a temp buffer, but if there was
1817 ;; an error, we leave this buffer around for diagnostics.
1818 ;; Its name is documented in the lispref.
1819 (setq input-buffer
(get-buffer-create
1820 (concat " *Compiler Input*"
1821 (if (zerop byte-compile-level
) ""
1822 (format "-%s" byte-compile-level
)))))
1824 (setq buffer-file-coding-system nil
)
1825 ;; Always compile an Emacs Lisp file as multibyte
1826 ;; unless the file itself forces unibyte with -*-coding: raw-text;-*-
1827 (set-buffer-multibyte t
)
1828 (insert-file-contents filename
)
1829 ;; Mimic the way after-insert-file-set-coding can make the
1830 ;; buffer unibyte when visiting this file.
1831 (when (or (eq last-coding-system-used
'no-conversion
)
1832 (eq (coding-system-type last-coding-system-used
) 5))
1833 ;; For coding systems no-conversion and raw-text...,
1834 ;; edit the buffer as unibyte.
1835 (set-buffer-multibyte nil
))
1836 ;; Run hooks including the uncompression hook.
1837 ;; If they change the file name, then change it for the output also.
1838 (let ((buffer-file-name filename
)
1839 (dmm (default-value 'major-mode
))
1840 ;; Ignore unsafe local variables.
1841 ;; We only care about a few of them for our purposes.
1842 (enable-local-variables :safe
)
1843 (enable-local-eval nil
))
1846 (setq-default major-mode
'emacs-lisp-mode
)
1847 ;; Arg of t means don't alter enable-local-variables.
1848 (delay-mode-hooks (normal-mode t
)))
1849 (setq-default major-mode dmm
))
1850 ;; There may be a file local variable setting (bug#10419).
1851 (setq buffer-read-only nil
1852 filename buffer-file-name
))
1853 ;; Don't inherit lexical-binding from caller (bug#12938).
1854 (unless (local-variable-p 'lexical-binding
)
1855 (setq-local lexical-binding nil
))
1856 ;; Set the default directory, in case an eval-when-compile uses it.
1857 (setq default-directory
(file-name-directory filename
)))
1858 ;; Check if the file's local variables explicitly specify not to
1859 ;; compile this file.
1860 (if (with-current-buffer input-buffer no-byte-compile
)
1862 ;; (message "%s not compiled because of `no-byte-compile: %s'"
1863 ;; (byte-compile-abbreviate-file filename)
1864 ;; (with-current-buffer input-buffer no-byte-compile))
1865 (when (file-exists-p target-file
)
1866 (message "%s deleted because of `no-byte-compile: %s'"
1867 (byte-compile-abbreviate-file target-file
)
1868 (buffer-local-value 'no-byte-compile input-buffer
))
1869 (condition-case nil
(delete-file target-file
) (error nil
)))
1870 ;; We successfully didn't compile this file.
1872 (when byte-compile-verbose
1873 (message "Compiling %s..." filename
))
1874 (setq byte-compiler-error-flag nil
)
1875 ;; It is important that input-buffer not be current at this call,
1876 ;; so that the value of point set in input-buffer
1877 ;; within byte-compile-from-buffer lingers in that buffer.
1879 (save-current-buffer
1880 (let ((byte-compile-level (1+ byte-compile-level
)))
1881 (byte-compile-from-buffer input-buffer
))))
1882 (if byte-compiler-error-flag
1884 (when byte-compile-verbose
1885 (message "Compiling %s...done" filename
))
1886 (kill-buffer input-buffer
)
1887 (with-current-buffer output-buffer
1888 (goto-char (point-max))
1889 (insert "\n") ; aaah, unix.
1890 (if (file-writable-p target-file
)
1891 ;; We must disable any code conversion here.
1893 (let* ((coding-system-for-write 'no-conversion
)
1894 ;; Write to a tempfile so that if another Emacs
1895 ;; process is trying to load target-file (eg in a
1896 ;; parallel bootstrap), it does not risk getting a
1897 ;; half-finished file. (Bug#4196)
1898 (tempfile (make-temp-file target-file
))
1899 (default-modes (default-file-modes))
1900 (temp-modes (logand default-modes
#o600
))
1901 (desired-modes (logand default-modes
#o666
))
1903 (cons (lambda () (ignore-errors
1904 (delete-file tempfile
)))
1906 (unless (= temp-modes desired-modes
)
1907 (set-file-modes tempfile desired-modes
))
1908 (write-region (point-min) (point-max) tempfile nil
1)
1909 ;; This has the intentional side effect that any
1910 ;; hard-links to target-file continue to
1911 ;; point to the old file (this makes it possible
1912 ;; for installed files to share disk space with
1913 ;; the build tree, without causing problems when
1914 ;; emacs-lisp files in the build tree are
1915 ;; recompiled). Previously this was accomplished by
1916 ;; deleting target-file before writing it.
1917 (rename-file tempfile target-file t
))
1918 (or noninteractive
(message "Wrote %s" target-file
)))
1919 ;; This is just to give a better error message than write-region
1920 (let ((exists (file-exists-p target-file
)))
1921 (signal (if exists
'file-error
'file-missing
)
1922 (list "Opening output file"
1924 "Cannot overwrite file"
1925 "Directory not writable or nonexistent")
1927 (kill-buffer (current-buffer)))
1928 (if (and byte-compile-generate-call-tree
1929 (or (eq t byte-compile-generate-call-tree
)
1930 (y-or-n-p (format "Report call tree for %s? "
1933 (display-call-tree filename
)))
1938 ;;; compiling a single function
1940 (defun compile-defun (&optional arg
)
1941 "Compile and evaluate the current top-level form.
1942 Print the result in the echo area.
1943 With argument ARG, insert value in current buffer after the form."
1947 (beginning-of-defun)
1948 (let* ((byte-compile-current-file nil
)
1949 (byte-compile-current-buffer (current-buffer))
1950 (byte-compile-read-position (point))
1951 (byte-compile-last-position byte-compile-read-position
)
1952 (byte-compile-last-warned-form 'nothing
)
1954 (let ((read-with-symbol-positions (current-buffer))
1955 (read-symbol-positions-list nil
))
1956 (displaying-byte-compile-warnings
1958 (eval-sexp-add-defvars
1959 (read (current-buffer))
1960 byte-compile-read-position
))))
1963 (message "Compiling from buffer... done.")
1964 (prin1 value
(current-buffer))
1966 ((message "%s" (prin1-to-string value
)))))))
1968 (defun byte-compile-from-buffer (inbuffer)
1969 (let ((byte-compile-current-buffer inbuffer
)
1970 (byte-compile-read-position nil
)
1971 (byte-compile-last-position nil
)
1972 ;; Prevent truncation of flonums and lists as we read and print them
1973 (float-output-format nil
)
1974 (case-fold-search nil
)
1977 ;; Prevent edebug from interfering when we compile
1978 ;; and put the output into a file.
1979 ;; (edebug-all-defs nil)
1980 ;; (edebug-all-forms nil)
1981 ;; Simulate entry to byte-compile-top-level
1982 (byte-compile-jump-tables nil
)
1983 (byte-compile-constants nil
)
1984 (byte-compile-variables nil
)
1985 (byte-compile-tag-number 0)
1986 (byte-compile-depth 0)
1987 (byte-compile-maxdepth 0)
1988 (byte-compile-output nil
)
1989 ;; This allows us to get the positions of symbols read; it's
1990 ;; new in Emacs 22.1.
1991 (read-with-symbol-positions inbuffer
)
1992 (read-symbol-positions-list nil
)
1993 ;; #### This is bound in b-c-close-variables.
1994 ;; (byte-compile-warnings byte-compile-warnings)
1996 (byte-compile-close-variables
1997 (with-current-buffer
1998 (setq byte-compile--outbuffer
2000 (concat " *Compiler Output*"
2001 (if (<= byte-compile-level
1) ""
2002 (format "-%s" (1- byte-compile-level
))))))
2003 (set-buffer-multibyte t
)
2005 ;; (emacs-lisp-mode)
2006 (setq case-fold-search nil
))
2007 (displaying-byte-compile-warnings
2008 (with-current-buffer inbuffer
2009 (and byte-compile-current-file
2010 (byte-compile-insert-header byte-compile-current-file
2011 byte-compile--outbuffer
))
2012 (goto-char (point-min))
2013 ;; Should we always do this? When calling multiple files, it
2014 ;; would be useful to delay this warning until all have been
2015 ;; compiled. A: Yes! b-c-u-f might contain dross from a
2016 ;; previous byte-compile.
2017 (setq byte-compile-unresolved-functions nil
)
2018 (setq byte-compile-noruntime-functions nil
)
2019 (setq byte-compile-new-defuns nil
)
2021 ;; Compile the forms from the input buffer.
2023 (while (progn (skip-chars-forward " \t\n\^l")
2024 (= (following-char) ?\
;))
2027 (setq byte-compile-read-position
(point)
2028 byte-compile-last-position byte-compile-read-position
)
2029 (let* ((lread--old-style-backquotes nil
)
2030 (lread--unescaped-character-literals nil
)
2031 (form (read inbuffer
)))
2032 ;; Warn about the use of old-style backquotes.
2033 (when lread--old-style-backquotes
2034 (byte-compile-warn "!! The file uses old-style backquotes !!
2035 This functionality has been obsolete for more than 10 years already
2036 and will be removed soon. See (elisp)Backquote in the manual."))
2037 (when lread--unescaped-character-literals
2039 "unescaped character literals %s detected!"
2040 (mapconcat (lambda (char) (format "`?%c'" char
))
2041 (sort lread--unescaped-character-literals
#'<)
2043 (byte-compile-toplevel-file-form form
)))
2044 ;; Compile pending forms at end of file.
2045 (byte-compile-flush-pending)
2046 ;; Make warnings about unresolved functions
2047 ;; give the end of the file as their position.
2048 (setq byte-compile-last-position
(point-max))
2049 (byte-compile-warn-about-unresolved-functions))
2050 ;; Fix up the header at the front of the output
2051 ;; if the buffer contains multibyte characters.
2052 (and byte-compile-current-file
2053 (with-current-buffer byte-compile--outbuffer
2054 (byte-compile-fix-header byte-compile-current-file
))))
2055 byte-compile--outbuffer
)))
2057 (defun byte-compile-fix-header (_filename)
2058 "If the current buffer has any multibyte characters, insert a version test."
2059 (when (< (point-max) (position-bytes (point-max)))
2060 (goto-char (point-min))
2061 ;; Find the comment that describes the version condition.
2062 (search-forward "\n;;; This file uses")
2063 (narrow-to-region (line-beginning-position) (point-max))
2064 ;; Find the first line of ballast semicolons.
2065 (search-forward ";;;;;;;;;;")
2067 (narrow-to-region (point-min) (point))
2068 (let ((old-header-end (point))
2069 (minimum-version "23")
2071 (delete-region (point-min) (point-max))
2073 ";;; This file contains utf-8 non-ASCII characters,\n"
2074 ";;; and so cannot be loaded into Emacs 22 or earlier.\n"
2075 ;; Have to check if emacs-version is bound so that this works
2076 ;; in files loaded early in loadup.el.
2077 "(and (boundp 'emacs-version)\n"
2078 ;; If there is a name at the end of emacs-version,
2079 ;; don't try to check the version number.
2080 " (< (aref emacs-version (1- (length emacs-version))) ?A)\n"
2081 (format " (string-lessp emacs-version \"%s\")\n" minimum-version
)
2082 ;; Because the header must fit in a fixed width, we cannot
2083 ;; insert arbitrary-length file names (Bug#11585).
2084 " (error \"`%s' was compiled for "
2085 (format "Emacs %s or later\" #$))\n\n" minimum-version
))
2086 ;; Now compensate for any change in size, to make sure all
2087 ;; positions in the file remain valid.
2088 (setq delta
(- (point-max) old-header-end
))
2089 (goto-char (point-max))
2091 (delete-char delta
))))
2093 (defun byte-compile-insert-header (_filename outbuffer
)
2094 "Insert a header at the start of OUTBUFFER.
2095 Call from the source buffer."
2096 (let ((dynamic-docstrings byte-compile-dynamic-docstrings
)
2097 (dynamic byte-compile-dynamic
)
2098 (optimize byte-optimize
))
2099 (with-current-buffer outbuffer
2100 (goto-char (point-min))
2101 ;; The magic number of .elc files is ";ELC", or 0x3B454C43. After
2102 ;; that is the file-format version number (18, 19, 20, or 23) as a
2103 ;; byte, followed by some nulls. The primary motivation for doing
2104 ;; this is to get some binary characters up in the first line of
2105 ;; the file so that `diff' will simply say "Binary files differ"
2106 ;; instead of actually doing a diff of two .elc files. An extra
2107 ;; benefit is that you can add this to /etc/magic:
2108 ;; 0 string ;ELC GNU Emacs Lisp compiled file,
2109 ;; >4 byte x version %d
2111 ";ELC" 23 "\000\000\000\n"
2113 ";;; in Emacs version " emacs-version
"\n"
2116 ((eq optimize
'source
) " source-level optimization only")
2117 ((eq optimize
'byte
) " byte-level optimization only")
2118 (optimize " all optimizations")
2119 (t "out optimization"))
2121 (if dynamic
";;; Function definitions are lazy-loaded.\n"
2123 "\n;;; This file uses "
2124 (if dynamic-docstrings
2125 "dynamic docstrings, first added in Emacs 19.29"
2126 "opcodes that do not exist in Emacs 18")
2128 ;; Note that byte-compile-fix-header may change this.
2129 ";;; This file does not contain utf-8 non-ASCII characters,\n"
2130 ";;; and so can be loaded in Emacs versions earlier than 23.\n\n"
2131 ;; Insert semicolons as ballast, so that byte-compile-fix-header
2132 ;; can delete them so as to keep the buffer positions
2133 ;; constant for the actual compiled code.
2134 ";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;\n"
2135 ";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;\n\n"))))
2137 (defun byte-compile-output-file-form (form)
2138 ;; Write the given form to the output buffer, being careful of docstrings
2139 ;; in defvar, defvaralias, defconst, autoload and
2140 ;; custom-declare-variable because make-docfile is so amazingly stupid.
2141 ;; defalias calls are output directly by byte-compile-file-form-defmumble;
2142 ;; it does not pay to first build the defalias in defmumble and then parse
2144 (let ((print-escape-newlines t
)
2149 (print-circle ; Handle circular data structures.
2150 (not byte-compile-disable-print-circle
)))
2151 (if (and (memq (car-safe form
) '(defvar defvaralias defconst
2152 autoload custom-declare-variable
))
2153 (stringp (nth 3 form
)))
2154 (byte-compile-output-docform nil nil
'("\n(" 3 ")") form nil
2156 '(defvaralias autoload
2157 custom-declare-variable
)))
2158 (princ "\n" byte-compile--outbuffer
)
2159 (prin1 form byte-compile--outbuffer
)
2162 (defvar byte-compile--for-effect
)
2164 (defun byte-compile-output-docform (preface name info form specindex quoted
)
2165 "Print a form with a doc string. INFO is (prefix doc-index postfix).
2166 If PREFACE and NAME are non-nil, print them too,
2167 before INFO and the FORM but after the doc string itself.
2168 If SPECINDEX is non-nil, it is the index in FORM
2169 of the function bytecode string. In that case,
2170 we output that argument and the following argument
2171 \(the constants vector) together, for lazy loading.
2172 QUOTED says that we have to put a quote before the
2173 list that represents a doc string reference.
2174 `defvaralias', `autoload' and `custom-declare-variable' need that."
2175 ;; We need to examine byte-compile-dynamic-docstrings
2176 ;; in the input buffer (now current), not in the output buffer.
2177 (let ((dynamic-docstrings byte-compile-dynamic-docstrings
))
2178 (with-current-buffer byte-compile--outbuffer
2181 ;; Insert the doc string, and make it a comment with #@LENGTH.
2182 (and (>= (nth 1 info
) 0)
2185 ;; Make the doc string start at beginning of line
2186 ;; for make-docfile's sake.
2189 (byte-compile-output-as-comment
2190 (nth (nth 1 info
) form
) nil
))
2191 ;; If the doc string starts with * (a user variable),
2193 (if (and (stringp (nth (nth 1 info
) form
))
2194 (> (length (nth (nth 1 info
) form
)) 0)
2195 (eq (aref (nth (nth 1 info
) form
) 0) ?
*))
2196 (setq position
(- position
)))))
2198 (let ((print-continuous-numbering t
)
2201 ;; FIXME: The bindings below are only needed for when we're
2202 ;; called from ...-defmumble.
2203 (print-escape-newlines t
)
2208 (print-circle ; Handle circular data structures.
2209 (not byte-compile-disable-print-circle
)))
2212 ;; FIXME: We don't handle uninterned names correctly.
2213 ;; E.g. if cl-define-compiler-macro uses uninterned name we get:
2214 ;; (defalias '#1=#:foo--cmacro #[514 ...])
2215 ;; (put 'foo 'compiler-macro '#:foo--cmacro)
2217 (prin1 name byte-compile--outbuffer
)))
2219 (prin1 (car form
) byte-compile--outbuffer
)
2220 (while (setq form
(cdr form
))
2221 (setq index
(1+ index
))
2223 (cond ((and (numberp specindex
) (= index specindex
)
2224 ;; Don't handle the definition dynamically
2225 ;; if it refers (or might refer)
2226 ;; to objects already output
2227 ;; (for instance, gensyms in the arg list).
2229 (when (hash-table-p print-number-table
)
2230 (maphash (lambda (_k v
) (if v
(setq non-nil t
)))
2231 print-number-table
))
2233 ;; Output the byte code and constants specially
2234 ;; for lazy dynamic loading.
2236 (byte-compile-output-as-comment
2237 (cons (car form
) (nth 1 form
))
2239 (princ (format "(#$ . %d) nil" position
)
2240 byte-compile--outbuffer
)
2241 (setq form
(cdr form
))
2242 (setq index
(1+ index
))))
2243 ((= index
(nth 1 info
))
2245 (princ (format (if quoted
"'(#$ . %d)" "(#$ . %d)")
2247 byte-compile--outbuffer
)
2248 (let ((print-escape-newlines nil
))
2249 (goto-char (prog1 (1+ (point))
2251 byte-compile--outbuffer
)))
2253 (goto-char (point-max)))))
2255 (prin1 (car form
) byte-compile--outbuffer
)))))
2256 (insert (nth 2 info
)))))
2259 (defun byte-compile-keep-pending (form &optional handler
)
2260 (if (memq byte-optimize
'(t source
))
2261 (setq form
(byte-optimize-form form t
)))
2263 (let ((byte-compile--for-effect t
))
2264 ;; To avoid consing up monstrously large forms at load time, we split
2265 ;; the output regularly.
2266 (and (memq (car-safe form
) '(fset defalias
))
2267 (nthcdr 300 byte-compile-output
)
2268 (byte-compile-flush-pending))
2269 (funcall handler form
)
2270 (if byte-compile--for-effect
2271 (byte-compile-discard)))
2272 (byte-compile-form form t
))
2275 (defun byte-compile-flush-pending ()
2276 (if byte-compile-output
2277 (let ((form (byte-compile-out-toplevel t
'file
)))
2278 (cond ((eq (car-safe form
) 'progn
)
2279 (mapc 'byte-compile-output-file-form
(cdr form
)))
2281 (byte-compile-output-file-form form
)))
2282 (setq byte-compile-constants nil
2283 byte-compile-variables nil
2284 byte-compile-depth
0
2285 byte-compile-maxdepth
0
2286 byte-compile-output nil
2287 byte-compile-jump-tables nil
))))
2289 (defvar byte-compile-force-lexical-warnings nil
)
2291 (defun byte-compile-preprocess (form &optional _for-effect
)
2292 (setq form
(macroexpand-all form byte-compile-macro-environment
))
2293 ;; FIXME: We should run byte-optimize-form here, but it currently does not
2294 ;; recurse through all the code, so we'd have to fix this first.
2295 ;; Maybe a good fix would be to merge byte-optimize-form into
2297 ;; (if (memq byte-optimize '(t source))
2298 ;; (setq form (byte-optimize-form form for-effect)))
2300 (lexical-binding (cconv-closure-convert form
))
2301 (byte-compile-force-lexical-warnings (cconv-warnings-only form
))
2304 ;; byte-hunk-handlers cannot call this!
2305 (defun byte-compile-toplevel-file-form (top-level-form)
2306 (byte-compile-recurse-toplevel
2309 (let ((byte-compile-current-form nil
)) ; close over this for warnings.
2310 (byte-compile-file-form (byte-compile-preprocess form t
))))))
2312 ;; byte-hunk-handlers can call this.
2313 (defun byte-compile-file-form (form)
2315 (cond ((and (consp form
)
2316 (symbolp (car form
))
2317 (setq handler
(get (car form
) 'byte-hunk-handler
)))
2318 (cond ((setq form
(funcall handler form
))
2319 (byte-compile-flush-pending)
2320 (byte-compile-output-file-form form
))))
2322 (byte-compile-keep-pending form
)))))
2324 ;; Functions and variables with doc strings must be output separately,
2325 ;; so make-docfile can recognize them. Most other things can be output
2328 (put 'autoload
'byte-hunk-handler
'byte-compile-file-form-autoload
)
2329 (defun byte-compile-file-form-autoload (form)
2330 (and (let ((form form
))
2331 (while (if (setq form
(cdr form
)) (macroexp-const-p (car form
))))
2332 (null form
)) ;Constants only
2333 (memq (eval (nth 5 form
)) '(t macro
)) ;Macro
2334 (eval form
)) ;Define the autoload.
2335 ;; Avoid undefined function warnings for the autoload.
2337 (`',(and (pred symbolp
) funsym
)
2338 ;; Don't add it if it's already defined. Otherwise, it might
2339 ;; hide the actual definition. However, do remove any entry from
2340 ;; byte-compile-noruntime-functions, in case we have an autoload
2341 ;; of foo-func following an (eval-when-compile (require 'foo)).
2342 (unless (fboundp funsym
)
2343 (push (cons funsym
(cons 'autoload
(cdr (cdr form
))))
2344 byte-compile-function-environment
))
2345 ;; If an autoload occurs _before_ the first call to a function,
2346 ;; byte-compile-callargs-warn does not add an entry to
2347 ;; byte-compile-unresolved-functions. Here we mimic the logic
2348 ;; of byte-compile-callargs-warn so as not to warn if the
2349 ;; autoload comes _after_ the function call.
2350 ;; Alternatively, similar logic could go in
2351 ;; byte-compile-warn-about-unresolved-functions.
2352 (if (memq funsym byte-compile-noruntime-functions
)
2353 (setq byte-compile-noruntime-functions
2354 (delq funsym byte-compile-noruntime-functions
))
2355 (setq byte-compile-unresolved-functions
2356 (delq (assq funsym byte-compile-unresolved-functions
)
2357 byte-compile-unresolved-functions
)))))
2358 (if (stringp (nth 3 form
))
2360 ;; No doc string, so we can compile this as a normal form.
2361 (byte-compile-keep-pending form
'byte-compile-normal-call
)))
2363 (put 'defvar
'byte-hunk-handler
'byte-compile-file-form-defvar
)
2364 (put 'defconst
'byte-hunk-handler
'byte-compile-file-form-defvar
)
2366 (defun byte-compile--declare-var (sym)
2367 (when (and (symbolp sym
)
2368 (not (string-match "[-*/:$]" (symbol-name sym
)))
2369 (byte-compile-warning-enabled-p 'lexical
))
2370 (byte-compile-warn "global/dynamic var `%s' lacks a prefix"
2372 (when (memq sym byte-compile-lexical-variables
)
2373 (setq byte-compile-lexical-variables
2374 (delq sym byte-compile-lexical-variables
))
2375 (byte-compile-warn "Variable `%S' declared after its first use" sym
))
2376 (push sym byte-compile-bound-variables
))
2378 (defun byte-compile-file-form-defvar (form)
2379 (let ((sym (nth 1 form
)))
2380 (byte-compile--declare-var sym
)
2381 (if (eq (car form
) 'defconst
)
2382 (push sym byte-compile-const-variables
)))
2383 (if (and (null (cddr form
)) ;No `value' provided.
2384 (eq (car form
) 'defvar
)) ;Just a declaration.
2386 (cond ((consp (nth 2 form
))
2387 (setq form
(copy-sequence form
))
2388 (setcar (cdr (cdr form
))
2389 (byte-compile-top-level (nth 2 form
) nil
'file
))))
2392 (put 'define-abbrev-table
'byte-hunk-handler
2393 'byte-compile-file-form-defvar-function
)
2394 (put 'defvaralias
'byte-hunk-handler
'byte-compile-file-form-defvar-function
)
2396 (defun byte-compile-file-form-defvar-function (form)
2397 (pcase-let (((or `',name
(let name nil
)) (nth 1 form
)))
2398 (if name
(byte-compile--declare-var name
)))
2399 (byte-compile-keep-pending form
))
2401 (put 'custom-declare-variable
'byte-hunk-handler
2402 'byte-compile-file-form-custom-declare-variable
)
2403 (defun byte-compile-file-form-custom-declare-variable (form)
2404 (when (byte-compile-warning-enabled-p 'callargs
)
2405 (byte-compile-nogroup-warn form
))
2406 (byte-compile-file-form-defvar-function form
))
2408 (put 'require
'byte-hunk-handler
'byte-compile-file-form-require
)
2409 (defun byte-compile-file-form-require (form)
2410 (let ((args (mapcar 'eval
(cdr form
)))
2411 (hist-orig load-history
)
2413 (apply 'require args
)
2415 ;; Record the functions defined by the require in `byte-compile-new-defuns'.
2416 (setq hist-new load-history
)
2417 (setq prov-cons
(cons 'provide
(car args
)))
2418 (while (and hist-new
2419 (not (member prov-cons
(car hist-new
))))
2420 (setq hist-new
(cdr hist-new
)))
2422 (dolist (x (car hist-new
))
2423 (when (and (consp x
)
2424 (memq (car x
) '(defun t)))
2425 (push (cdr x
) byte-compile-new-defuns
))))
2427 (when (byte-compile-warning-enabled-p 'cl-functions
)
2428 ;; Detect (require 'cl) in a way that works even if cl is already loaded.
2429 (if (member (car args
) '("cl" cl
))
2431 (byte-compile-warn "cl package required at runtime")
2432 (byte-compile-disable-warning 'cl-functions
))
2433 ;; We may have required something that causes cl to be loaded, eg
2434 ;; the uncompiled version of a file that requires cl when compiling.
2435 (setq hist-new load-history
)
2436 (while (and (not byte-compile-cl-functions
)
2437 hist-new
(not (eq hist-new hist-orig
)))
2438 (and (byte-compile-cl-file-p (car (pop hist-new
)))
2439 (byte-compile-find-cl-functions))))))
2440 (byte-compile-keep-pending form
'byte-compile-normal-call
))
2442 (put 'progn
'byte-hunk-handler
'byte-compile-file-form-progn
)
2443 (put 'prog1
'byte-hunk-handler
'byte-compile-file-form-progn
)
2444 (put 'prog2
'byte-hunk-handler
'byte-compile-file-form-progn
)
2445 (defun byte-compile-file-form-progn (form)
2446 (mapc 'byte-compile-file-form
(cdr form
))
2447 ;; Return nil so the forms are not output twice.
2450 (put 'with-no-warnings
'byte-hunk-handler
2451 'byte-compile-file-form-with-no-warnings
)
2452 (defun byte-compile-file-form-with-no-warnings (form)
2453 ;; cf byte-compile-file-form-progn.
2454 (let (byte-compile-warnings)
2455 (mapc 'byte-compile-file-form
(cdr form
))
2458 ;; This handler is not necessary, but it makes the output from dont-compile
2459 ;; and similar macros cleaner.
2460 (put 'eval
'byte-hunk-handler
'byte-compile-file-form-eval
)
2461 (defun byte-compile-file-form-eval (form)
2462 (if (eq (car-safe (nth 1 form
)) 'quote
)
2463 (nth 1 (nth 1 form
))
2464 (byte-compile-keep-pending form
)))
2466 (defun byte-compile-file-form-defmumble (name macro arglist body rest
)
2467 "Process a `defalias' for NAME.
2468 If MACRO is non-nil, the definition is known to be a macro.
2469 ARGLIST is the list of arguments, if it was recognized or t otherwise.
2470 BODY of the definition, or t if not recognized.
2471 Return non-nil if everything went as planned, or nil to imply that it decided
2472 not to take responsibility for the actual compilation of the code."
2473 (let* ((this-kind (if macro
'byte-compile-macro-environment
2474 'byte-compile-function-environment
))
2475 (that-kind (if macro
'byte-compile-function-environment
2476 'byte-compile-macro-environment
))
2477 (this-one (assq name
(symbol-value this-kind
)))
2478 (that-one (assq name
(symbol-value that-kind
)))
2479 (byte-compile-current-form name
)) ; For warnings.
2481 (byte-compile-set-symbol-position name
)
2482 (push name byte-compile-new-defuns
)
2483 ;; When a function or macro is defined, add it to the call tree so that
2484 ;; we can tell when functions are not used.
2485 (if byte-compile-generate-call-tree
2486 (or (assq name byte-compile-call-tree
)
2487 (setq byte-compile-call-tree
2488 (cons (list name nil nil
) byte-compile-call-tree
))))
2490 (if (byte-compile-warning-enabled-p 'redefine
)
2491 (byte-compile-arglist-warn name arglist macro
))
2493 (if byte-compile-verbose
2494 (message "Compiling %s... (%s)"
2495 (or byte-compile-current-file
"") name
))
2496 (cond ((not (or macro
(listp body
)))
2497 ;; We do not know positively if the definition is a macro
2498 ;; or a function, so we shouldn't emit warnings.
2499 ;; This also silences "multiple definition" warnings for defmethods.
2502 (if (and (byte-compile-warning-enabled-p 'redefine
)
2503 ;; Don't warn when compiling the stubs in byte-run...
2504 (not (assq name byte-compile-initial-macro-environment
)))
2506 "`%s' defined multiple times, as both function and macro"
2508 (setcdr that-one nil
))
2510 (when (and (byte-compile-warning-enabled-p 'redefine
)
2511 ;; Hack: Don't warn when compiling the magic internal
2512 ;; byte-compiler macros in byte-run.el...
2513 (not (assq name byte-compile-initial-macro-environment
)))
2514 (byte-compile-warn "%s `%s' defined multiple times in this file"
2515 (if macro
"macro" "function")
2517 ((eq (car-safe (symbol-function name
))
2518 (if macro
'lambda
'macro
))
2519 (when (byte-compile-warning-enabled-p 'redefine
)
2520 (byte-compile-warn "%s `%s' being redefined as a %s"
2521 (if macro
"function" "macro")
2523 (if macro
"macro" "function")))
2524 ;; Shadow existing definition.
2526 (cons (cons name nil
)
2527 (symbol-value this-kind
))))
2530 (when (and (listp body
)
2531 (stringp (car body
))
2532 (symbolp (car-safe (cdr-safe body
)))
2533 (car-safe (cdr-safe body
))
2534 (stringp (car-safe (cdr-safe (cdr-safe body
)))))
2535 ;; FIXME: We've done that already just above, so this looks wrong!
2536 ;;(byte-compile-set-symbol-position name)
2537 (byte-compile-warn "probable `\"' without `\\' in doc string of %s"
2540 (if (not (listp body
))
2541 ;; The precise definition requires evaluation to find out, so it
2542 ;; will only be known at runtime.
2543 ;; For a macro, that means we can't use that macro in the same file.
2546 (push (cons name
(if (listp arglist
) `(declared ,arglist
) t
))
2547 byte-compile-function-environment
))
2548 ;; Tell the caller that we didn't compile it yet.
2551 (let* ((code (byte-compile-lambda (cons arglist body
) t
)))
2553 ;; A definition in b-c-initial-m-e should always take precedence
2554 ;; during compilation, so don't let it be redefined. (Bug#8647)
2556 (assq name byte-compile-initial-macro-environment
))
2557 (setcdr this-one code
))
2559 (cons (cons name code
)
2560 (symbol-value this-kind
))))
2563 ;; There are additional args to `defalias' (like maybe a docstring)
2564 ;; that the code below can't handle: punt!
2566 ;; Otherwise, we have a bona-fide defun/defmacro definition, and use
2567 ;; special code to allow dynamic docstrings and byte-code.
2568 (byte-compile-flush-pending)
2570 ;; If there's no doc string, provide -1 as the "doc string
2571 ;; index" so that no element will be treated as a doc string.
2572 (if (not (stringp (documentation code t
))) -
1 4)))
2573 ;; Output the form by hand, that's much simpler than having
2574 ;; b-c-output-file-form analyze the defalias.
2575 (byte-compile-output-docform
2578 (if macro
`(" '(macro . #[" ,index
"])") `(" #[" ,index
"]"))
2579 (append code nil
) ; Turn byte-code-function-p into list.
2580 (and (atom code
) byte-compile-dynamic
2583 (princ ")" byte-compile--outbuffer
)
2586 (defun byte-compile-output-as-comment (exp quoted
)
2587 "Print Lisp object EXP in the output file, inside a comment,
2588 and return the file (byte) position it will have.
2589 If QUOTED is non-nil, print with quoting; otherwise, print without quoting."
2590 (with-current-buffer byte-compile--outbuffer
2591 (let ((position (point)))
2593 ;; Insert EXP, and make it a comment with #@LENGTH.
2596 (prin1 exp byte-compile--outbuffer
)
2597 (princ exp byte-compile--outbuffer
))
2598 (goto-char position
)
2599 ;; Quote certain special characters as needed.
2600 ;; get_doc_string in doc.c does the unquoting.
2601 (while (search-forward "\^A" nil t
)
2602 (replace-match "\^A\^A" t t
))
2603 (goto-char position
)
2604 (while (search-forward "\000" nil t
)
2605 (replace-match "\^A0" t t
))
2606 (goto-char position
)
2607 (while (search-forward "\037" nil t
)
2608 (replace-match "\^A_" t t
))
2609 (goto-char (point-max))
2611 (goto-char position
)
2612 (insert "#@" (format "%d" (- (position-bytes (point-max))
2613 (position-bytes position
))))
2615 ;; Save the file position of the object.
2616 ;; Note we add 1 to skip the space that we inserted before the actual doc
2617 ;; string, and subtract point-min to convert from an 1-origin Emacs
2618 ;; position to a file position.
2620 (- (position-bytes (point)) (point-min) -
1)
2621 (goto-char (point-max))))))
2623 (defun byte-compile--reify-function (fun)
2624 "Return an expression which will evaluate to a function value FUN.
2625 FUN should be either a `lambda' value or a `closure' value."
2626 (pcase-let* (((or (and `(lambda ,args .
,body
) (let env nil
))
2627 `(closure ,env
,args .
,body
))
2631 ;; Split docstring and `interactive' form from body.
2632 (when (stringp (car body
))
2633 (push (pop body
) preamble
))
2634 (when (eq (car-safe (car body
)) 'interactive
)
2635 (push (pop body
) preamble
))
2636 ;; Turn the function's closed vars (if any) into local let bindings.
2637 (dolist (binding env
)
2640 ;; We check shadowing by the args, so that the `let' can be moved
2641 ;; within the lambda, which can then be unfolded. FIXME: Some of those
2642 ;; bindings might be unused in `body'.
2643 (unless (memq (car binding
) args
) ;Shadowed.
2644 (push `(,(car binding
) ',(cdr binding
)) renv
)))
2646 (t (push `(defvar ,binding
) body
))))
2648 `(lambda ,args
,@preamble
,@body
)
2649 `(lambda ,args
,@preamble
(let ,(nreverse renv
) ,@body
)))))
2652 (defun byte-compile (form)
2653 "If FORM is a symbol, byte-compile its function definition.
2654 If FORM is a lambda or a macro, byte-compile it as a function."
2655 (displaying-byte-compile-warnings
2656 (byte-compile-close-variables
2657 (let* ((lexical-binding lexical-binding
)
2658 (fun (if (symbolp form
)
2659 (symbol-function form
)
2661 (macro (eq (car-safe fun
) 'macro
)))
2663 (setq fun
(cdr fun
)))
2665 ;; Up until Emacs-24.1, byte-compile silently did nothing when asked to
2666 ;; compile something invalid. So let's tune down the complaint from an
2667 ;; error to a simple message for the known case where signaling an error
2669 ((byte-code-function-p fun
)
2670 (message "Function %s is already compiled"
2671 (if (symbolp form
) form
"provided"))
2674 (when (or (symbolp form
) (eq (car-safe fun
) 'closure
))
2675 ;; `fun' is a function *value*, so try to recover its corresponding
2677 (setq lexical-binding
(eq (car fun
) 'closure
))
2678 (setq fun
(byte-compile--reify-function fun
)))
2680 (setq fun
(byte-compile-preprocess fun
))
2681 (setq fun
(byte-compile-top-level fun nil
'eval
))
2682 (if macro
(push 'macro fun
))
2687 (defun byte-compile-sexp (sexp)
2688 "Compile and return SEXP."
2689 (displaying-byte-compile-warnings
2690 (byte-compile-close-variables
2691 (byte-compile-top-level (byte-compile-preprocess sexp
)))))
2693 (defun byte-compile-check-lambda-list (list)
2694 "Check lambda-list LIST for errors."
2697 (let ((arg (car list
)))
2699 (byte-compile-set-symbol-position arg
))
2700 (cond ((or (not (symbolp arg
))
2701 (macroexp--const-symbol-p arg t
))
2702 (error "Invalid lambda variable %s" arg
))
2705 (error "&rest without variable name"))
2707 (error "Garbage following &rest VAR in lambda-list")))
2708 ((eq arg
'&optional
)
2709 (when (or (null (cdr list
))
2710 (memq (cadr list
) '(&optional
&rest
)))
2711 (error "Variable name missing after &optional"))
2712 (when (memq '&optional
(cddr list
))
2713 (error "Duplicate &optional")))
2715 (byte-compile-warn "repeated variable %s in lambda-list" arg
))
2718 (setq list
(cdr list
)))))
2721 (defun byte-compile-arglist-vars (arglist)
2722 "Return a list of the variables in the lambda argument list ARGLIST."
2723 (remq '&rest
(remq '&optional arglist
)))
2725 (defun byte-compile-make-lambda-lexenv (args)
2726 "Return a new lexical environment for a lambda expression FORM."
2729 ;; Add entries for each argument.
2731 (push (cons arg stackpos
) lexenv
)
2732 (setq stackpos
(1+ stackpos
)))
2733 ;; Return the new lexical environment.
2736 (defun byte-compile-make-args-desc (arglist)
2739 (while (and arglist
(not (memq (car arglist
) '(&optional
&rest
))))
2740 (setq mandatory
(1+ mandatory
))
2741 (setq arglist
(cdr arglist
)))
2742 (setq nonrest mandatory
)
2743 (when (eq (car arglist
) '&optional
)
2744 (setq arglist
(cdr arglist
))
2745 (while (and arglist
(not (eq (car arglist
) '&rest
)))
2746 (setq nonrest
(1+ nonrest
))
2747 (setq arglist
(cdr arglist
))))
2750 (if (> mandatory
127)
2751 (byte-compile-report-error "Too many (>127) mandatory arguments")
2757 (defun byte-compile-lambda (fun &optional add-lambda reserved-csts
)
2758 "Byte-compile a lambda-expression and return a valid function.
2759 The value is usually a compiled function but may be the original
2761 When ADD-LAMBDA is non-nil, the symbol `lambda' is added as head
2762 of the list FUN and `byte-compile-set-symbol-position' is not called.
2763 Use this feature to avoid calling `byte-compile-set-symbol-position'
2764 for symbols generated by the byte compiler itself."
2766 (setq fun
(cons 'lambda fun
))
2767 (unless (eq 'lambda
(car-safe fun
))
2768 (error "Not a lambda list: %S" fun
))
2769 (byte-compile-set-symbol-position 'lambda
))
2770 (byte-compile-check-lambda-list (nth 1 fun
))
2771 (let* ((arglist (nth 1 fun
))
2772 (arglistvars (byte-compile-arglist-vars arglist
))
2773 (byte-compile-bound-variables
2774 (append (if (not lexical-binding
) arglistvars
)
2775 byte-compile-bound-variables
))
2776 (body (cdr (cdr fun
)))
2777 (doc (if (stringp (car body
))
2779 ;; Discard the doc string
2780 ;; unless it is the last element of the body.
2782 (setq body
(cdr body
))))))
2783 (int (assq 'interactive body
)))
2784 ;; Process the interactive spec.
2786 (byte-compile-set-symbol-position 'interactive
)
2787 ;; Skip (interactive) if it is in front (the most usual location).
2788 (if (eq int
(car body
))
2789 (setq body
(cdr body
)))
2790 (cond ((consp (cdr int
))
2792 (byte-compile-warn "malformed interactive spec: %s"
2793 (prin1-to-string int
)))
2794 ;; If the interactive spec is a call to `list', don't
2795 ;; compile it, because `call-interactively' looks at the
2796 ;; args of `list'. Actually, compile it to get warnings,
2797 ;; but don't use the result.
2798 (let* ((form (nth 1 int
))
2799 (newform (byte-compile-top-level form
)))
2800 (while (memq (car-safe form
) '(let let
* progn save-excursion
))
2801 (while (consp (cdr form
))
2802 (setq form
(cdr form
)))
2803 (setq form
(car form
)))
2804 (if (and (eq (car-safe form
) 'list
)
2805 ;; The spec is evalled in callint.c in dynamic-scoping
2806 ;; mode, so just leaving the form unchanged would mean
2807 ;; it won't be eval'd in the right mode.
2808 (not lexical-binding
))
2810 (setq int
`(interactive ,newform
)))))
2812 (byte-compile-warn "malformed interactive spec: %s"
2813 (prin1-to-string int
)))))
2814 ;; Process the body.
2816 (byte-compile-top-level (cons 'progn body
) nil
'lambda
2817 ;; If doing lexical binding, push a new
2818 ;; lexical environment containing just the
2819 ;; args (since lambda expressions should be
2821 (and lexical-binding
2822 (byte-compile-make-lambda-lexenv
2825 ;; Build the actual byte-coded function.
2826 (cl-assert (eq 'byte-code
(car-safe compiled
)))
2827 (apply #'make-byte-code
2829 (byte-compile-make-args-desc arglist
)
2832 ;; byte-string, constants-vector, stack depth
2834 ;; optionally, the doc string.
2835 (cond ((and lexical-binding arglist
)
2836 ;; byte-compile-make-args-desc lost the args's names,
2837 ;; so preserve them in the docstring.
2838 (list (help-add-fundoc-usage doc arglist
)))
2841 ;; optionally, the interactive spec.
2843 (list (nth 1 int
))))))))
2845 (defvar byte-compile-reserved-constants
0)
2847 (defun byte-compile-constants-vector ()
2848 ;; Builds the constants-vector from the current variables and constants.
2849 ;; This modifies the constants from (const . nil) to (const . offset).
2850 ;; To keep the byte-codes to look up the vector as short as possible:
2851 ;; First 6 elements are vars, as there are one-byte varref codes for those.
2852 ;; Next up to byte-constant-limit are constants, still with one-byte codes.
2853 ;; Next variables again, to get 2-byte codes for variable lookup.
2854 ;; The rest of the constants and variables need 3-byte byte-codes.
2855 (let* ((i (1- byte-compile-reserved-constants
))
2856 (rest (nreverse byte-compile-variables
)) ; nreverse because the first
2857 (other (nreverse byte-compile-constants
)) ; vars often are used most.
2859 (limits '(5 ; Use the 1-byte varref codes,
2860 63 ; 1-constlim ; 1-byte byte-constant codes,
2861 255 ; 2-byte varref codes,
2862 65535 ; 3-byte codes for the rest.
2863 65535)) ; twice since we step when we swap.
2865 (while (or rest other
)
2866 (setq limit
(car limits
))
2867 (while (and rest
(< i limit
))
2869 ((numberp (car rest
))
2870 (cl-assert (< (car rest
) byte-compile-reserved-constants
)))
2871 ((setq tmp
(assq (car (car rest
)) ret
))
2872 (setcdr (car rest
) (cdr tmp
)))
2874 (setcdr (car rest
) (setq i
(1+ i
)))
2875 (setq ret
(cons (car rest
) ret
))))
2876 (setq rest
(cdr rest
)))
2877 (setq limits
(cdr limits
) ;Step
2878 rest
(prog1 other
;&Swap.
2879 (setq other rest
))))
2880 (apply 'vector
(nreverse (mapcar 'car ret
)))))
2882 ;; Given an expression FORM, compile it and return an equivalent byte-code
2883 ;; expression (a call to the function byte-code).
2884 (defun byte-compile-top-level (form &optional for-effect output-type
2885 lexenv reserved-csts
)
2886 ;; OUTPUT-TYPE advises about how form is expected to be used:
2887 ;; 'eval or nil -> a single form,
2888 ;; 'progn or t -> a list of forms,
2889 ;; 'lambda -> body of a lambda,
2890 ;; 'file -> used at file-level.
2891 (let ((byte-compile--for-effect for-effect
)
2892 (byte-compile-constants nil
)
2893 (byte-compile-variables nil
)
2894 (byte-compile-tag-number 0)
2895 (byte-compile-depth 0)
2896 (byte-compile-maxdepth 0)
2897 (byte-compile--lexical-environment lexenv
)
2898 (byte-compile-reserved-constants (or reserved-csts
0))
2899 (byte-compile-output nil
)
2900 (byte-compile-jump-tables nil
))
2901 (if (memq byte-optimize
'(t source
))
2902 (setq form
(byte-optimize-form form byte-compile--for-effect
)))
2903 (while (and (eq (car-safe form
) 'progn
) (null (cdr (cdr form
))))
2904 (setq form
(nth 1 form
)))
2905 ;; Set up things for a lexically-bound function.
2906 (when (and lexical-binding
(eq output-type
'lambda
))
2907 ;; See how many arguments there are, and set the current stack depth
2909 (setq byte-compile-depth
(length byte-compile--lexical-environment
))
2910 ;; If there are args, output a tag to record the initial
2911 ;; stack-depth for the optimizer.
2912 (when (> byte-compile-depth
0)
2913 (byte-compile-out-tag (byte-compile-make-tag))))
2915 (byte-compile-form form byte-compile--for-effect
)
2916 (byte-compile-out-toplevel byte-compile--for-effect output-type
)))
2918 (defun byte-compile-out-toplevel (&optional for-effect output-type
)
2920 ;; The stack is empty. Push a value to be returned from (byte-code ..).
2921 (if (eq (car (car byte-compile-output
)) 'byte-discard
)
2922 (setq byte-compile-output
(cdr byte-compile-output
))
2923 (byte-compile-push-constant
2924 ;; Push any constant - preferably one which already is used, and
2925 ;; a number or symbol - ie not some big sequence. The return value
2926 ;; isn't returned, but it would be a shame if some textually large
2927 ;; constant was not optimized away because we chose to return it.
2928 (and (not (assq nil byte-compile-constants
)) ; Nil is often there.
2929 (let ((tmp (reverse byte-compile-constants
)))
2930 (while (and tmp
(not (or (symbolp (caar tmp
))
2931 (numberp (caar tmp
)))))
2932 (setq tmp
(cdr tmp
)))
2934 (byte-compile-out 'byte-return
0)
2935 (setq byte-compile-output
(nreverse byte-compile-output
))
2936 (if (memq byte-optimize
'(t byte
))
2937 (setq byte-compile-output
2938 (byte-optimize-lapcode byte-compile-output
)))
2940 ;; Decompile trivial functions:
2941 ;; only constants and variables, or a single funcall except in lambdas.
2942 ;; Except for Lisp_Compiled objects, forms like (foo "hi")
2943 ;; are still quicker than (byte-code "..." [foo "hi"] 2).
2944 ;; Note that even (quote foo) must be parsed just as any subr by the
2945 ;; interpreter, so quote should be compiled into byte-code in some contexts.
2946 ;; What to leave uncompiled:
2947 ;; lambda -> never. we used to leave it uncompiled if the body was
2948 ;; a single atom, but that causes confusion if the docstring
2949 ;; uses the (file . pos) syntax. Besides, now that we have
2950 ;; the Lisp_Compiled type, the compiled form is faster.
2951 ;; eval -> atom, quote or (function atom atom atom)
2952 ;; progn -> as <<same-as-eval>> or (progn <<same-as-eval>> atom)
2953 ;; file -> as progn, but takes both quotes and atoms, and longer forms.
2955 (maycall (not (eq output-type
'lambda
))) ; t if we may make a funcall.
2958 ;; #### This should be split out into byte-compile-nontrivial-function-p.
2959 ((or (eq output-type
'lambda
)
2960 (nthcdr (if (eq output-type
'file
) 50 8) byte-compile-output
)
2961 (assq 'TAG byte-compile-output
) ; Not necessary, but speeds up a bit.
2962 (not (setq tmp
(assq 'byte-return byte-compile-output
)))
2964 (setq rest
(nreverse
2965 (cdr (memq tmp
(reverse byte-compile-output
)))))
2968 ((memq (car (car rest
)) '(byte-varref byte-constant
))
2969 (setq tmp
(car (cdr (car rest
))))
2970 (if (if (eq (car (car rest
)) 'byte-constant
)
2973 (not (macroexp--const-symbol-p tmp
)))))
2975 (setq body
(cons (list 'quote tmp
) body
)))
2976 (setq body
(cons tmp body
))))
2978 ;; Allow a funcall if at most one atom follows it.
2979 (null (nthcdr 3 rest
))
2980 (setq tmp
(get (car (car rest
)) 'byte-opcode-invert
))
2981 (or (null (cdr rest
))
2982 (and (memq output-type
'(file progn t
))
2984 (eq (car (nth 1 rest
)) 'byte-discard
)
2985 (progn (setq rest
(cdr rest
)) t
))))
2986 (setq maycall nil
) ; Only allow one real function call.
2987 (setq body
(nreverse body
))
2989 (if (and (eq tmp
'funcall
)
2990 (eq (car-safe (car body
)) 'quote
)
2991 (symbolp (nth 1 (car body
))))
2992 (cons (nth 1 (car body
)) (cdr body
))
2994 (or (eq output-type
'file
)
2995 (not (delq nil
(mapcar 'consp
(cdr (car body
))))))))
2996 (setq rest
(cdr rest
)))
2998 (let ((byte-compile-vector (byte-compile-constants-vector)))
2999 (list 'byte-code
(byte-compile-lapcode byte-compile-output
)
3000 byte-compile-vector byte-compile-maxdepth
)))
3001 ;; it's a trivial function
3002 ((cdr body
) (cons 'progn
(nreverse body
)))
3005 ;; Given BODY, compile it and return a new body.
3006 (defun byte-compile-top-level-body (body &optional for-effect
)
3008 (byte-compile-top-level (cons 'progn body
) for-effect t
))
3009 (cond ((eq (car-safe body
) 'progn
)
3014 ;; Special macro-expander used during byte-compilation.
3015 (defun byte-compile-macroexpand-declare-function (fn file
&rest args
)
3016 (declare (advertised-calling-convention
3017 (fn file
&optional arglist fileonly
) nil
))
3018 (let ((gotargs (and (consp args
) (listp (car args
))))
3019 (unresolved (assq fn byte-compile-unresolved-functions
)))
3020 (when unresolved
; function was called before declaration
3021 (if (and gotargs
(byte-compile-warning-enabled-p 'callargs
))
3022 (byte-compile-arglist-warn fn
(car args
) nil
)
3023 (setq byte-compile-unresolved-functions
3024 (delq unresolved byte-compile-unresolved-functions
))))
3025 (push (cons fn
(if gotargs
3026 (list 'declared
(car args
))
3027 t
)) ; Arglist not specified.
3028 byte-compile-function-environment
))
3029 ;; We are stating that it _will_ be defined at runtime.
3030 (setq byte-compile-noruntime-functions
3031 (delq fn byte-compile-noruntime-functions
))
3032 ;; Delegate the rest to the normal macro definition.
3033 (macroexpand `(declare-function ,fn
,file
,@args
)))
3036 ;; This is the recursive entry point for compiling each subform of an
3038 ;; If for-effect is non-nil, byte-compile-form will output a byte-discard
3039 ;; before terminating (ie no value will be left on the stack).
3040 ;; A byte-compile handler may, when byte-compile--for-effect is non-nil, choose
3041 ;; output code which does not leave a value on the stack, and then set
3042 ;; byte-compile--for-effect to nil (to prevent byte-compile-form from
3043 ;; outputting the byte-discard).
3044 ;; If a handler wants to call another handler, it should do so via
3045 ;; byte-compile-form, or take extreme care to handle byte-compile--for-effect
3046 ;; correctly. (Use byte-compile-form-do-effect to reset the
3047 ;; byte-compile--for-effect flag too.)
3049 (defun byte-compile-form (form &optional for-effect
)
3050 (let ((byte-compile--for-effect for-effect
))
3053 (cond ((or (not (symbolp form
)) (macroexp--const-symbol-p form
))
3054 (when (symbolp form
)
3055 (byte-compile-set-symbol-position form
))
3056 (byte-compile-constant form
))
3057 ((and byte-compile--for-effect byte-compile-delete-errors
)
3058 (when (symbolp form
)
3059 (byte-compile-set-symbol-position form
))
3060 (setq byte-compile--for-effect nil
))
3062 (byte-compile-variable-ref form
))))
3063 ((symbolp (car form
))
3064 (let* ((fn (car form
))
3065 (handler (get fn
'byte-compile
))
3067 (or (get fn
'interactive-only
)
3068 (memq fn byte-compile-interactive-only-functions
))))
3069 (when (memq fn
'(set symbol-value run-hooks
;; add-to-list
3070 add-hook remove-hook run-hook-with-args
3071 run-hook-with-args-until-success
3072 run-hook-with-args-until-failure
))
3075 (when (assq var byte-compile-lexical-variables
)
3076 (byte-compile-report-error
3077 (format-message "%s cannot use lexical var `%s'" fn var
))))))
3078 (when (macroexp--const-symbol-p fn
)
3079 (byte-compile-warn "`%s' called as a function" fn
))
3080 (when (and (byte-compile-warning-enabled-p 'interactive-only
)
3082 (byte-compile-warn "`%s' is for interactive use only%s"
3084 (cond ((stringp interactive-only
)
3086 (substitute-command-keys
3088 ((and (symbolp 'interactive-only
)
3089 (not (eq interactive-only t
)))
3090 (format-message "; use `%s' instead."
3093 (if (eq (car-safe (symbol-function (car form
))) 'macro
)
3094 (byte-compile-report-error
3095 (format "Forgot to expand macro %s in %S" (car form
) form
)))
3097 ;; Make sure that function exists.
3098 (and (functionp handler
)
3099 ;; Ignore obsolete byte-compile function used by former
3100 ;; CL code to handle compiler macros (we do it
3101 ;; differently now).
3102 (not (eq handler
'cl-byte-compile-compiler-macro
))))
3103 (funcall handler form
)
3104 (byte-compile-normal-call form
))
3105 (if (byte-compile-warning-enabled-p 'cl-functions
)
3106 (byte-compile-cl-warn form
))))
3107 ((and (byte-code-function-p (car form
))
3108 (memq byte-optimize
'(t lap
)))
3109 (byte-compile-unfold-bcf form
))
3110 ((and (eq (car-safe (car form
)) 'lambda
)
3111 ;; if the form comes out the same way it went in, that's
3112 ;; because it was malformed, and we couldn't unfold it.
3113 (not (eq form
(setq form
(byte-compile-unfold-lambda form
)))))
3114 (byte-compile-form form byte-compile--for-effect
)
3115 (setq byte-compile--for-effect nil
))
3116 ((byte-compile-normal-call form
)))
3117 (if byte-compile--for-effect
3118 (byte-compile-discard))))
3120 (defun byte-compile-normal-call (form)
3121 (when (and (byte-compile-warning-enabled-p 'callargs
)
3122 (symbolp (car form
)))
3123 (if (memq (car form
)
3124 '(custom-declare-group custom-declare-variable
3125 custom-declare-face
))
3126 (byte-compile-nogroup-warn form
))
3127 (byte-compile-callargs-warn form
))
3128 (if byte-compile-generate-call-tree
3129 (byte-compile-annotate-call-tree form
))
3130 (when (and byte-compile--for-effect
(eq (car form
) 'mapcar
)
3131 (byte-compile-warning-enabled-p 'mapcar
))
3132 (byte-compile-set-symbol-position 'mapcar
)
3134 "`mapcar' called for effect; use `mapc' or `dolist' instead"))
3135 (byte-compile-push-constant (car form
))
3136 (mapc 'byte-compile-form
(cdr form
)) ; wasteful, but faster.
3137 (byte-compile-out 'byte-call
(length (cdr form
))))
3140 ;; Splice the given lap code into the current instruction stream.
3141 ;; If it has any labels in it, you're responsible for making sure there
3142 ;; are no collisions, and that byte-compile-tag-number is reasonable
3143 ;; after this is spliced in. The provided list is destroyed.
3144 (defun byte-compile-inline-lapcode (lap end-depth
)
3145 ;; "Replay" the operations: we used to just do
3146 ;; (setq byte-compile-output (nconc (nreverse lap) byte-compile-output))
3147 ;; but that fails to update byte-compile-depth, so we had to assume
3148 ;; that `lap' ends up adding exactly 1 element to the stack. This
3149 ;; happens to be true for byte-code generated by bytecomp.el without
3150 ;; lexical-binding, but it's not true in general, and it's not true for
3151 ;; code output by bytecomp.el with lexical-binding.
3152 ;; We also restore the value of `byte-compile-depth' and remove TAG depths
3153 ;; accordingly when inlining lapcode containing lap-code, exactly as
3154 ;; documented in `byte-compile-cond-jump-table'.
3155 (let ((endtag (byte-compile-make-tag))
3156 last-jump-tag
;; last TAG we have jumped to
3157 last-depth
;; last value of `byte-compile-depth'
3158 last-constant
;; value of the last constant encountered
3159 last-switch
;; whether the last op encountered was byte-switch
3160 switch-tags
;; a list of tags that byte-switch could jump to
3161 ;; a list of tags byte-switch will jump to, if the value doesn't
3162 ;; match any entry in the hash table
3163 switch-default-tags
)
3167 (when (or (member op switch-tags
) (member op switch-default-tags
))
3168 ;; This TAG is used in a jump table, this means the last goto
3169 ;; was to a done/default TAG, and thus it's cddr should be set to nil.
3171 (setcdr (cdr last-jump-tag
) nil
))
3172 ;; Also, restore the value of `byte-compile-depth' to what it was
3173 ;; before the last goto.
3174 (setq byte-compile-depth last-depth
3176 (byte-compile-out-tag op
))
3177 ((memq (car op
) byte-goto-ops
)
3178 (setq last-depth byte-compile-depth
3179 last-jump-tag
(cdr op
))
3180 (byte-compile-goto (car op
) (cdr op
))
3182 ;; The last op was byte-switch, this goto jumps to a "default" TAG
3183 ;; (when no value in the jump table is satisfied).
3184 (push (cdr op
) switch-default-tags
)
3185 (setcdr (cdr (cdr op
)) nil
)
3186 (setq byte-compile-depth last-depth
3188 ((eq (car op
) 'byte-return
)
3189 (byte-compile-discard (- byte-compile-depth end-depth
) t
)
3190 (byte-compile-goto 'byte-goto endtag
))
3192 (when (eq (car op
) 'byte-switch
)
3193 ;; The last constant is a jump table.
3194 (push last-constant byte-compile-jump-tables
)
3195 (setq last-switch t
)
3196 ;; Push all TAGs in the jump to switch-tags.
3197 (maphash #'(lambda (_k tag
)
3198 (push tag switch-tags
))
3200 (setq last-constant
(and (eq (car op
) 'byte-constant
) (cadr op
)))
3201 (setq last-depth byte-compile-depth
)
3202 (byte-compile-out (car op
) (cdr op
)))))
3203 (byte-compile-out-tag endtag
)))
3205 (defun byte-compile-unfold-bcf (form)
3206 "Inline call to byte-code-functions."
3207 (let* ((byte-compile-bound-variables byte-compile-bound-variables
)
3209 (fargs (aref fun
0))
3210 (start-depth byte-compile-depth
)
3211 (fmax2 (if (numberp fargs
) (lsh fargs -
7))) ;2*max+rest.
3212 ;; (fmin (if (numberp fargs) (logand fargs 127)))
3213 (alen (length (cdr form
)))
3216 (fetch-bytecode fun
)
3217 (setq lap
(byte-decompile-bytecode-1 (aref fun
1) (aref fun
2) t
))
3218 ;; optimized switch bytecode makes it impossible to guess the correct
3219 ;; `byte-compile-depth', which can result in incorrect inlined code.
3220 ;; therefore, we do not inline code that uses the `byte-switch'
3222 (if (assq 'byte-switch lap
)
3223 (byte-compile-normal-call form
)
3224 (mapc 'byte-compile-form
(cdr form
))
3226 ;; Old-style byte-code.
3227 (cl-assert (listp fargs
))
3230 (`&optional
(setq fargs
(cdr fargs
)))
3231 (`&rest
(setq fmax2
(+ (* 2 (length dynbinds
)) 1))
3232 (push (cadr fargs
) dynbinds
)
3234 (_ (push (pop fargs
) dynbinds
))))
3235 (unless fmax2
(setq fmax2
(* 2 (length dynbinds
)))))
3237 ((<= (+ alen alen
) fmax2
)
3238 ;; Add missing &optional (or &rest) arguments.
3239 (dotimes (_ (- (/ (1+ fmax2
) 2) alen
))
3240 (byte-compile-push-constant nil
)))
3241 ((zerop (logand fmax2
1))
3242 (byte-compile-report-error
3243 (format "Too many arguments for inlined function %S" form
))
3244 (byte-compile-discard (- alen
(/ fmax2
2))))
3246 ;; Turn &rest args into a list.
3247 (let ((n (- alen
(/ (1- fmax2
) 2))))
3248 (cl-assert (> n
0) nil
"problem: fmax2=%S alen=%S n=%S" fmax2 alen n
)
3251 (aref [byte-list1 byte-list2 byte-list3 byte-list4
] (1- n
))
3253 (byte-compile-out 'byte-listN n
)))))
3254 (mapc #'byte-compile-dynamic-variable-bind dynbinds
)
3255 (byte-compile-inline-lapcode lap
(1+ start-depth
))
3256 ;; Unbind dynamic variables.
3258 (byte-compile-out 'byte-unbind
(length dynbinds
)))
3259 (cl-assert (eq byte-compile-depth
(1+ start-depth
))
3260 nil
"Wrong depth start=%s end=%s" start-depth byte-compile-depth
))))
3262 (defun byte-compile-check-variable (var access-type
)
3263 "Do various error checks before a use of the variable VAR."
3265 (byte-compile-set-symbol-position var
))
3266 (cond ((or (not (symbolp var
)) (macroexp--const-symbol-p var
))
3267 (when (byte-compile-warning-enabled-p 'constants
)
3268 (byte-compile-warn (if (eq access-type
'let-bind
)
3269 "attempt to let-bind %s `%s'"
3270 "variable reference to %s `%s'")
3271 (if (symbolp var
) "constant" "nonvariable")
3272 (prin1-to-string var
))))
3273 ((let ((od (get var
'byte-obsolete-variable
)))
3275 (not (memq var byte-compile-not-obsolete-vars
))
3276 (not (memq var byte-compile-global-not-obsolete-vars
))
3277 (or (pcase (nth 1 od
)
3278 (`set
(not (eq access-type
'reference
)))
3279 (`get
(eq access-type
'reference
))
3281 (byte-compile-warn-obsolete var
))))
3283 (defsubst byte-compile-dynamic-variable-op
(base-op var
)
3284 (let ((tmp (assq var byte-compile-variables
)))
3286 (setq tmp
(list var
))
3287 (push tmp byte-compile-variables
))
3288 (byte-compile-out base-op tmp
)))
3290 (defun byte-compile-dynamic-variable-bind (var)
3291 "Generate code to bind the lexical variable VAR to the top-of-stack value."
3292 (byte-compile-check-variable var
'let-bind
)
3293 (push var byte-compile-bound-variables
)
3294 (byte-compile-dynamic-variable-op 'byte-varbind var
))
3296 (defun byte-compile-variable-ref (var)
3297 "Generate code to push the value of the variable VAR on the stack."
3298 (byte-compile-check-variable var
'reference
)
3299 (let ((lex-binding (assq var byte-compile--lexical-environment
)))
3301 ;; VAR is lexically bound
3302 (byte-compile-stack-ref (cdr lex-binding
))
3303 ;; VAR is dynamically bound
3304 (unless (or (not (byte-compile-warning-enabled-p 'free-vars
))
3306 (memq var byte-compile-bound-variables
)
3307 (memq var byte-compile-free-references
))
3308 (byte-compile-warn "reference to free variable `%S'" var
)
3309 (push var byte-compile-free-references
))
3310 (byte-compile-dynamic-variable-op 'byte-varref var
))))
3312 (defun byte-compile-variable-set (var)
3313 "Generate code to set the variable VAR from the top-of-stack value."
3314 (byte-compile-check-variable var
'assign
)
3315 (let ((lex-binding (assq var byte-compile--lexical-environment
)))
3317 ;; VAR is lexically bound.
3318 (byte-compile-stack-set (cdr lex-binding
))
3319 ;; VAR is dynamically bound.
3320 (unless (or (not (byte-compile-warning-enabled-p 'free-vars
))
3322 (memq var byte-compile-bound-variables
)
3323 (memq var byte-compile-free-assignments
))
3324 (byte-compile-warn "assignment to free variable `%s'" var
)
3325 (push var byte-compile-free-assignments
))
3326 (byte-compile-dynamic-variable-op 'byte-varset var
))))
3328 (defmacro byte-compile-get-constant
(const)
3329 `(or (if (stringp ,const
)
3330 ;; In a string constant, treat properties as significant.
3332 (dolist (elt byte-compile-constants
)
3333 (if (equal-including-properties (car elt
) ,const
)
3336 (assq ,const byte-compile-constants
))
3337 (car (setq byte-compile-constants
3338 (cons (list ,const
) byte-compile-constants
)))))
3340 ;; Use this when the value of a form is a constant.
3341 ;; This obeys byte-compile--for-effect.
3342 (defun byte-compile-constant (const)
3343 (if byte-compile--for-effect
3344 (setq byte-compile--for-effect nil
)
3345 (inline (byte-compile-push-constant const
))))
3347 ;; Use this for a constant that is not the value of its containing form.
3348 ;; This ignores byte-compile--for-effect.
3349 (defun byte-compile-push-constant (const)
3350 (when (symbolp const
)
3351 (byte-compile-set-symbol-position const
))
3352 (byte-compile-out 'byte-constant
(byte-compile-get-constant const
)))
3354 ;; Compile those primitive ordinary functions
3355 ;; which have special byte codes just for speed.
3357 (defmacro byte-defop-compiler
(function &optional compile-handler
)
3358 "Add a compiler-form for FUNCTION.
3359 If function is a symbol, then the variable \"byte-SYMBOL\" must name
3360 the opcode to be used. If function is a list, the first element
3361 is the function and the second element is the bytecode-symbol.
3362 The second element may be nil, meaning there is no opcode.
3363 COMPILE-HANDLER is the function to use to compile this byte-op, or
3364 may be the abbreviations 0, 1, 2, 3, 0-1, or 1-2.
3365 If it is nil, then the handler is \"byte-compile-SYMBOL.\""
3367 (if (symbolp function
)
3368 (setq opcode
(intern (concat "byte-" (symbol-name function
))))
3369 (setq opcode
(car (cdr function
))
3370 function
(car function
)))
3372 (list 'put
(list 'quote function
) ''byte-compile
3374 (or (cdr (assq compile-handler
3375 '((0 . byte-compile-no-args
)
3376 (1 . byte-compile-one-arg
)
3377 (2 . byte-compile-two-args
)
3378 (2-and . byte-compile-and-folded
)
3379 (3 . byte-compile-three-args
)
3380 (0-1 . byte-compile-zero-or-one-arg
)
3381 (1-2 . byte-compile-one-or-two-args
)
3382 (2-3 . byte-compile-two-or-three-args
)
3385 (intern (concat "byte-compile-"
3386 (symbol-name function
))))))))
3389 (list 'put
(list 'quote function
)
3390 ''byte-opcode
(list 'quote opcode
))
3391 (list 'put
(list 'quote opcode
)
3392 ''byte-opcode-invert
(list 'quote function
)))
3395 (defmacro byte-defop-compiler-1
(function &optional compile-handler
)
3396 (list 'byte-defop-compiler
(list function nil
) compile-handler
))
3399 (put 'byte-call
'byte-opcode-invert
'funcall
)
3400 (put 'byte-list1
'byte-opcode-invert
'list
)
3401 (put 'byte-list2
'byte-opcode-invert
'list
)
3402 (put 'byte-list3
'byte-opcode-invert
'list
)
3403 (put 'byte-list4
'byte-opcode-invert
'list
)
3404 (put 'byte-listN
'byte-opcode-invert
'list
)
3405 (put 'byte-concat2
'byte-opcode-invert
'concat
)
3406 (put 'byte-concat3
'byte-opcode-invert
'concat
)
3407 (put 'byte-concat4
'byte-opcode-invert
'concat
)
3408 (put 'byte-concatN
'byte-opcode-invert
'concat
)
3409 (put 'byte-insertN
'byte-opcode-invert
'insert
)
3411 (byte-defop-compiler point
0)
3412 ;;(byte-defop-compiler mark 0) ;; obsolete
3413 (byte-defop-compiler point-max
0)
3414 (byte-defop-compiler point-min
0)
3415 (byte-defop-compiler following-char
0)
3416 (byte-defop-compiler preceding-char
0)
3417 (byte-defop-compiler current-column
0)
3418 (byte-defop-compiler eolp
0)
3419 (byte-defop-compiler eobp
0)
3420 (byte-defop-compiler bolp
0)
3421 (byte-defop-compiler bobp
0)
3422 (byte-defop-compiler current-buffer
0)
3423 ;;(byte-defop-compiler read-char 0) ;; obsolete
3424 ;; (byte-defop-compiler interactive-p 0) ;; Obsolete.
3425 (byte-defop-compiler widen
0)
3426 (byte-defop-compiler end-of-line
0-
1)
3427 (byte-defop-compiler forward-char
0-
1)
3428 (byte-defop-compiler forward-line
0-
1)
3429 (byte-defop-compiler symbolp
1)
3430 (byte-defop-compiler consp
1)
3431 (byte-defop-compiler stringp
1)
3432 (byte-defop-compiler listp
1)
3433 (byte-defop-compiler not
1)
3434 (byte-defop-compiler (null byte-not
) 1)
3435 (byte-defop-compiler car
1)
3436 (byte-defop-compiler cdr
1)
3437 (byte-defop-compiler length
1)
3438 (byte-defop-compiler symbol-value
1)
3439 (byte-defop-compiler symbol-function
1)
3440 (byte-defop-compiler (1+ byte-add1
) 1)
3441 (byte-defop-compiler (1- byte-sub1
) 1)
3442 (byte-defop-compiler goto-char
1)
3443 (byte-defop-compiler char-after
0-
1)
3444 (byte-defop-compiler set-buffer
1)
3445 ;;(byte-defop-compiler set-mark 1) ;; obsolete
3446 (byte-defop-compiler forward-word
0-
1)
3447 (byte-defop-compiler char-syntax
1)
3448 (byte-defop-compiler nreverse
1)
3449 (byte-defop-compiler car-safe
1)
3450 (byte-defop-compiler cdr-safe
1)
3451 (byte-defop-compiler numberp
1)
3452 (byte-defop-compiler integerp
1)
3453 (byte-defop-compiler skip-chars-forward
1-
2)
3454 (byte-defop-compiler skip-chars-backward
1-
2)
3455 (byte-defop-compiler eq
2)
3456 (byte-defop-compiler memq
2)
3457 (byte-defop-compiler cons
2)
3458 (byte-defop-compiler aref
2)
3459 (byte-defop-compiler set
2)
3460 (byte-defop-compiler (= byte-eqlsign
) 2-and
)
3461 (byte-defop-compiler (< byte-lss
) 2-and
)
3462 (byte-defop-compiler (> byte-gtr
) 2-and
)
3463 (byte-defop-compiler (<= byte-leq
) 2-and
)
3464 (byte-defop-compiler (>= byte-geq
) 2-and
)
3465 (byte-defop-compiler get
2)
3466 (byte-defop-compiler nth
2)
3467 (byte-defop-compiler substring
2-
3)
3468 (byte-defop-compiler (move-marker byte-set-marker
) 2-
3)
3469 (byte-defop-compiler set-marker
2-
3)
3470 (byte-defop-compiler match-beginning
1)
3471 (byte-defop-compiler match-end
1)
3472 (byte-defop-compiler upcase
1)
3473 (byte-defop-compiler downcase
1)
3474 (byte-defop-compiler string
= 2)
3475 (byte-defop-compiler string
< 2)
3476 (byte-defop-compiler (string-equal byte-string
=) 2)
3477 (byte-defop-compiler (string-lessp byte-string
<) 2)
3478 (byte-defop-compiler equal
2)
3479 (byte-defop-compiler nthcdr
2)
3480 (byte-defop-compiler elt
2)
3481 (byte-defop-compiler member
2)
3482 (byte-defop-compiler assq
2)
3483 (byte-defop-compiler (rplaca byte-setcar
) 2)
3484 (byte-defop-compiler (rplacd byte-setcdr
) 2)
3485 (byte-defop-compiler setcar
2)
3486 (byte-defop-compiler setcdr
2)
3487 (byte-defop-compiler buffer-substring
2)
3488 (byte-defop-compiler delete-region
2)
3489 (byte-defop-compiler narrow-to-region
2)
3490 (byte-defop-compiler (% byte-rem
) 2)
3491 (byte-defop-compiler aset
3)
3493 (byte-defop-compiler max byte-compile-associative
)
3494 (byte-defop-compiler min byte-compile-associative
)
3495 (byte-defop-compiler (+ byte-plus
) byte-compile-associative
)
3496 (byte-defop-compiler (* byte-mult
) byte-compile-associative
)
3498 ;;####(byte-defop-compiler move-to-column 1)
3499 (byte-defop-compiler-1 interactive byte-compile-noop
)
3502 (defun byte-compile-subr-wrong-args (form n
)
3503 (byte-compile-set-symbol-position (car form
))
3504 (byte-compile-warn "`%s' called with %d arg%s, but requires %s"
3505 (car form
) (length (cdr form
))
3506 (if (= 1 (length (cdr form
))) "" "s") n
)
3507 ;; Get run-time wrong-number-of-args error.
3508 (byte-compile-normal-call form
))
3510 (defun byte-compile-no-args (form)
3511 (if (not (= (length form
) 1))
3512 (byte-compile-subr-wrong-args form
"none")
3513 (byte-compile-out (get (car form
) 'byte-opcode
) 0)))
3515 (defun byte-compile-one-arg (form)
3516 (if (not (= (length form
) 2))
3517 (byte-compile-subr-wrong-args form
1)
3518 (byte-compile-form (car (cdr form
))) ;; Push the argument
3519 (byte-compile-out (get (car form
) 'byte-opcode
) 0)))
3521 (defun byte-compile-two-args (form)
3522 (if (not (= (length form
) 3))
3523 (byte-compile-subr-wrong-args form
2)
3524 (byte-compile-form (car (cdr form
))) ;; Push the arguments
3525 (byte-compile-form (nth 2 form
))
3526 (byte-compile-out (get (car form
) 'byte-opcode
) 0)))
3528 (defun byte-compile-and-folded (form)
3529 "Compile calls to functions like `<='.
3530 These implicitly `and' together a bunch of two-arg bytecodes."
3531 (let ((l (length form
)))
3533 ((< l
3) (byte-compile-form `(progn ,(nth 1 form
) t
)))
3534 ((= l
3) (byte-compile-two-args form
))
3535 ((cl-every #'macroexp-copyable-p
(nthcdr 2 form
))
3536 (byte-compile-form `(and (,(car form
) ,(nth 1 form
) ,(nth 2 form
))
3537 (,(car form
) ,@(nthcdr 2 form
)))))
3538 (t (byte-compile-normal-call form
)))))
3540 (defun byte-compile-three-args (form)
3541 (if (not (= (length form
) 4))
3542 (byte-compile-subr-wrong-args form
3)
3543 (byte-compile-form (car (cdr form
))) ;; Push the arguments
3544 (byte-compile-form (nth 2 form
))
3545 (byte-compile-form (nth 3 form
))
3546 (byte-compile-out (get (car form
) 'byte-opcode
) 0)))
3548 (defun byte-compile-zero-or-one-arg (form)
3549 (let ((len (length form
)))
3550 (cond ((= len
1) (byte-compile-one-arg (append form
'(nil))))
3551 ((= len
2) (byte-compile-one-arg form
))
3552 (t (byte-compile-subr-wrong-args form
"0-1")))))
3554 (defun byte-compile-one-or-two-args (form)
3555 (let ((len (length form
)))
3556 (cond ((= len
2) (byte-compile-two-args (append form
'(nil))))
3557 ((= len
3) (byte-compile-two-args form
))
3558 (t (byte-compile-subr-wrong-args form
"1-2")))))
3560 (defun byte-compile-two-or-three-args (form)
3561 (let ((len (length form
)))
3562 (cond ((= len
3) (byte-compile-three-args (append form
'(nil))))
3563 ((= len
4) (byte-compile-three-args form
))
3564 (t (byte-compile-subr-wrong-args form
"2-3")))))
3566 (defun byte-compile-noop (_form)
3567 (byte-compile-constant nil
))
3569 (defun byte-compile-discard (&optional num preserve-tos
)
3570 "Output byte codes to discard the NUM entries at the top of the stack.
3572 If PRESERVE-TOS is non-nil, preserve the top-of-stack value, as if it were
3573 popped before discarding the num values, and then pushed back again after
3575 (if (and (null num
) (not preserve-tos
))
3577 (byte-compile-out 'byte-discard
)
3581 (when (and preserve-tos
(> num
0))
3582 ;; Preserve the top-of-stack value by writing it directly to the stack
3583 ;; location which will be at the top-of-stack after popping.
3584 (byte-compile-stack-set (1- (- byte-compile-depth num
)))
3585 ;; Now we actually discard one less value, since we want to keep
3587 (setq num
(1- num
)))
3589 (byte-compile-out 'byte-discard
)
3590 (setq num
(1- num
)))))
3592 (defun byte-compile-stack-ref (stack-pos)
3593 "Output byte codes to push the value at stack position STACK-POS."
3594 (let ((dist (- byte-compile-depth
(1+ stack-pos
))))
3596 ;; A simple optimization
3597 (byte-compile-out 'byte-dup
)
3599 (byte-compile-out 'byte-stack-ref dist
))))
3601 (defun byte-compile-stack-set (stack-pos)
3602 "Output byte codes to store the TOS value at stack position STACK-POS."
3603 (byte-compile-out 'byte-stack-set
(- byte-compile-depth
(1+ stack-pos
))))
3605 (byte-defop-compiler-1 internal-make-closure byte-compile-make-closure
)
3606 (byte-defop-compiler-1 internal-get-closed-var byte-compile-get-closed-var
)
3608 (defun byte-compile-make-closure (form)
3609 "Byte-compile the special `internal-make-closure' form."
3610 (if byte-compile--for-effect
(setq byte-compile--for-effect nil
)
3611 (let* ((vars (nth 1 form
))
3613 (docstring-exp (nth 3 form
))
3614 (body (nthcdr 4 form
))
3616 (byte-compile-lambda `(lambda ,vars .
,body
) nil
(length env
))))
3617 (cl-assert (or (> (length env
) 0)
3618 docstring-exp
)) ;Otherwise, we don't need a closure.
3619 (cl-assert (byte-code-function-p fun
))
3620 (byte-compile-form `(make-byte-code
3621 ',(aref fun
0) ',(aref fun
1)
3622 (vconcat (vector .
,env
) ',(aref fun
2))
3623 ,@(let ((rest (nthcdr 3 (mapcar (lambda (x) `',x
) fun
))))
3630 (defun byte-compile-get-closed-var (form)
3631 "Byte-compile the special `internal-get-closed-var' form."
3632 (if byte-compile--for-effect
(setq byte-compile--for-effect nil
)
3633 (byte-compile-out 'byte-constant
(nth 1 form
))))
3635 ;; Compile a function that accepts one or more args and is right-associative.
3636 ;; We do it by left-associativity so that the operations
3637 ;; are done in the same order as in interpreted code.
3638 ;; We treat the one-arg case, as in (+ x), like (+ x 0).
3639 ;; in order to convert markers to numbers, and trigger expected errors.
3640 (defun byte-compile-associative (form)
3642 (let ((opcode (get (car form
) 'byte-opcode
))
3644 (if (and (< 3 (length form
))
3645 (memq opcode
(list (get '+ 'byte-opcode
)
3646 (get '* 'byte-opcode
))))
3647 ;; Don't use binary operations for > 2 operands, as that
3648 ;; may cause overflow/truncation in float operations.
3649 (byte-compile-normal-call form
)
3650 (setq args
(copy-sequence (cdr form
)))
3651 (byte-compile-form (car args
))
3652 (setq args
(cdr args
))
3653 (or args
(setq args
'(0)
3654 opcode
(get '+ 'byte-opcode
)))
3656 (byte-compile-form arg
)
3657 (byte-compile-out opcode
0))))
3658 (byte-compile-constant (eval form
))))
3661 ;; more complicated compiler macros
3663 (byte-defop-compiler char-before
)
3664 (byte-defop-compiler backward-char
)
3665 (byte-defop-compiler backward-word
)
3666 (byte-defop-compiler list
)
3667 (byte-defop-compiler concat
)
3668 (byte-defop-compiler fset
)
3669 (byte-defop-compiler (indent-to-column byte-indent-to
) byte-compile-indent-to
)
3670 (byte-defop-compiler indent-to
)
3671 (byte-defop-compiler insert
)
3672 (byte-defop-compiler-1 function byte-compile-function-form
)
3673 (byte-defop-compiler-1 - byte-compile-minus
)
3674 (byte-defop-compiler (/ byte-quo
) byte-compile-quo
)
3675 (byte-defop-compiler nconc
)
3677 ;; Is this worth it? Both -before and -after are written in C.
3678 (defun byte-compile-char-before (form)
3679 (cond ((or (= 1 (length form
))
3680 (and (= 2 (length form
)) (not (nth 1 form
))))
3681 (byte-compile-form '(char-after (1- (point)))))
3682 ((= 2 (length form
))
3683 (byte-compile-form (list 'char-after
(if (numberp (nth 1 form
))
3685 `(1- (or ,(nth 1 form
)
3687 (t (byte-compile-subr-wrong-args form
"0-1"))))
3689 ;; backward-... ==> forward-... with negated argument.
3690 ;; Is this worth it? Both -backward and -forward are written in C.
3691 (defun byte-compile-backward-char (form)
3692 (cond ((or (= 1 (length form
))
3693 (and (= 2 (length form
)) (not (nth 1 form
))))
3694 (byte-compile-form '(forward-char -
1)))
3695 ((= 2 (length form
))
3696 (byte-compile-form (list 'forward-char
(if (numberp (nth 1 form
))
3698 `(- (or ,(nth 1 form
) 1))))))
3699 (t (byte-compile-subr-wrong-args form
"0-1"))))
3701 (defun byte-compile-backward-word (form)
3702 (cond ((or (= 1 (length form
))
3703 (and (= 2 (length form
)) (not (nth 1 form
))))
3704 (byte-compile-form '(forward-word -
1)))
3705 ((= 2 (length form
))
3706 (byte-compile-form (list 'forward-word
(if (numberp (nth 1 form
))
3708 `(- (or ,(nth 1 form
) 1))))))
3709 (t (byte-compile-subr-wrong-args form
"0-1"))))
3711 (defun byte-compile-list (form)
3712 (let ((count (length (cdr form
))))
3714 (byte-compile-constant nil
))
3716 (mapc 'byte-compile-form
(cdr form
))
3718 (aref [byte-list1 byte-list2 byte-list3 byte-list4
] (1- count
)) 0))
3720 (mapc 'byte-compile-form
(cdr form
))
3721 (byte-compile-out 'byte-listN count
))
3722 (t (byte-compile-normal-call form
)))))
3724 (defun byte-compile-concat (form)
3725 (let ((count (length (cdr form
))))
3726 (cond ((and (< 1 count
) (< count
5))
3727 (mapc 'byte-compile-form
(cdr form
))
3729 (aref [byte-concat2 byte-concat3 byte-concat4
] (- count
2))
3731 ;; Concat of one arg is not a no-op if arg is not a string.
3733 (byte-compile-form ""))
3735 (mapc 'byte-compile-form
(cdr form
))
3736 (byte-compile-out 'byte-concatN count
))
3737 ((byte-compile-normal-call form
)))))
3739 (defun byte-compile-minus (form)
3740 (let ((len (length form
)))
3742 ((= 1 len
) (byte-compile-constant 0))
3744 (byte-compile-form (cadr form
))
3745 (byte-compile-out 'byte-negate
0))
3747 (byte-compile-form (nth 1 form
))
3748 (byte-compile-form (nth 2 form
))
3749 (byte-compile-out 'byte-diff
0))
3750 ;; Don't use binary operations for > 2 operands, as that may
3751 ;; cause overflow/truncation in float operations.
3752 (t (byte-compile-normal-call form
)))))
3754 (defun byte-compile-quo (form)
3755 (let ((len (length form
)))
3757 (byte-compile-subr-wrong-args form
"1 or more"))
3759 (byte-compile-two-args form
))
3761 ;; Don't use binary operations for > 2 operands, as that
3762 ;; may cause overflow/truncation in float operations.
3763 (byte-compile-normal-call form
)))))
3765 (defun byte-compile-nconc (form)
3766 (let ((len (length form
)))
3768 (byte-compile-constant nil
))
3770 ;; nconc of one arg is a noop, even if that arg isn't a list.
3771 (byte-compile-form (nth 1 form
)))
3773 (byte-compile-form (car (setq form
(cdr form
))))
3774 (while (setq form
(cdr form
))
3775 (byte-compile-form (car form
))
3776 (byte-compile-out 'byte-nconc
0))))))
3778 (defun byte-compile-fset (form)
3779 ;; warn about forms like (fset 'foo '(lambda () ...))
3780 ;; (where the lambda expression is non-trivial...)
3781 (let ((fn (nth 2 form
))
3783 (if (and (eq (car-safe fn
) 'quote
)
3784 (eq (car-safe (setq fn
(nth 1 fn
))) 'lambda
))
3786 (setq body
(cdr (cdr fn
)))
3787 (if (stringp (car body
)) (setq body
(cdr body
)))
3788 (if (eq 'interactive
(car-safe (car body
))) (setq body
(cdr body
)))
3789 (if (and (consp (car body
))
3790 (not (eq 'byte-code
(car (car body
)))))
3792 "A quoted lambda form is the second argument of `fset'. This is probably
3793 not what you want, as that lambda cannot be compiled. Consider using
3794 the syntax #'(lambda (...) ...) instead.")))))
3795 (byte-compile-two-args form
))
3797 ;; (function foo) must compile like 'foo, not like (symbol-function 'foo).
3798 ;; Otherwise it will be incompatible with the interpreter,
3799 ;; and (funcall (function foo)) will lose with autoloads.
3801 (defun byte-compile-function-form (form)
3802 (let ((f (nth 1 form
)))
3803 (when (and (symbolp f
)
3804 (byte-compile-warning-enabled-p 'callargs
))
3805 (byte-compile-function-warn f t
(byte-compile-fdefinition f nil
)))
3807 (byte-compile-constant (if (eq 'lambda
(car-safe f
))
3808 (byte-compile-lambda f
)
3811 (defun byte-compile-indent-to (form)
3812 (let ((len (length form
)))
3814 (byte-compile-form (car (cdr form
)))
3815 (byte-compile-out 'byte-indent-to
0))
3817 ;; no opcode for 2-arg case.
3818 (byte-compile-normal-call form
))
3820 (byte-compile-subr-wrong-args form
"1-2")))))
3822 (defun byte-compile-insert (form)
3823 (cond ((null (cdr form
))
3824 (byte-compile-constant nil
))
3825 ((<= (length form
) 256)
3826 (mapc 'byte-compile-form
(cdr form
))
3827 (if (cdr (cdr form
))
3828 (byte-compile-out 'byte-insertN
(length (cdr form
)))
3829 (byte-compile-out 'byte-insert
0)))
3830 ((memq t
(mapcar 'consp
(cdr (cdr form
))))
3831 (byte-compile-normal-call form
))
3832 ;; We can split it; there is no function call after inserting 1st arg.
3834 (while (setq form
(cdr form
))
3835 (byte-compile-form (car form
))
3836 (byte-compile-out 'byte-insert
0)
3838 (byte-compile-discard))))))
3841 (byte-defop-compiler-1 setq
)
3842 (byte-defop-compiler-1 setq-default
)
3843 (byte-defop-compiler-1 quote
)
3845 (defun byte-compile-setq (form)
3846 (let* ((args (cdr form
))
3847 (len (length args
)))
3848 (if (= (logand len
1) 1)
3850 (byte-compile-report-error
3852 "missing value for `%S' at end of setq" (car (last args
))))
3854 `(signal 'wrong-number-of-arguments
'(setq ,len
))
3855 byte-compile--for-effect
))
3858 (byte-compile-form (car (cdr args
)))
3859 (or byte-compile--for-effect
(cdr (cdr args
))
3860 (byte-compile-out 'byte-dup
0))
3861 (byte-compile-variable-set (car args
))
3862 (setq args
(cdr (cdr args
))))
3863 ;; (setq), with no arguments.
3864 (byte-compile-form nil byte-compile--for-effect
)))
3865 (setq byte-compile--for-effect nil
)))
3867 (defun byte-compile-setq-default (form)
3868 (setq form
(cdr form
))
3869 (if (null form
) ; (setq-default), with no arguments
3870 (byte-compile-form nil byte-compile--for-effect
)
3871 (if (> (length form
) 2)
3874 (push `(setq-default ,(pop form
) ,(pop form
)) setters
))
3875 (byte-compile-form (cons 'progn
(nreverse setters
))))
3876 (let ((var (car form
)))
3877 (and (or (not (symbolp var
))
3878 (macroexp--const-symbol-p var t
))
3879 (byte-compile-warning-enabled-p 'constants
)
3881 "variable assignment to %s `%s'"
3882 (if (symbolp var
) "constant" "nonvariable")
3883 (prin1-to-string var
)))
3884 (byte-compile-normal-call `(set-default ',var
,@(cdr form
)))))))
3886 (byte-defop-compiler-1 set-default
)
3887 (defun byte-compile-set-default (form)
3888 (let ((varexp (car-safe (cdr-safe form
))))
3889 (if (eq (car-safe varexp
) 'quote
)
3890 ;; If the varexp is constant, compile it as a setq-default
3891 ;; so we get more warnings.
3892 (byte-compile-setq-default `(setq-default ,(car-safe (cdr varexp
))
3894 (byte-compile-normal-call form
))))
3896 (defun byte-compile-quote (form)
3897 (byte-compile-constant (car (cdr form
))))
3899 ;;; control structures
3901 (defun byte-compile-body (body &optional for-effect
)
3903 (byte-compile-form (car body
) t
)
3904 (setq body
(cdr body
)))
3905 (byte-compile-form (car body
) for-effect
))
3907 (defsubst byte-compile-body-do-effect
(body)
3908 (byte-compile-body body byte-compile--for-effect
)
3909 (setq byte-compile--for-effect nil
))
3911 (defsubst byte-compile-form-do-effect
(form)
3912 (byte-compile-form form byte-compile--for-effect
)
3913 (setq byte-compile--for-effect nil
))
3915 (byte-defop-compiler-1 inline byte-compile-progn
)
3916 (byte-defop-compiler-1 progn
)
3917 (byte-defop-compiler-1 prog1
)
3918 (byte-defop-compiler-1 prog2
)
3919 (byte-defop-compiler-1 if
)
3920 (byte-defop-compiler-1 cond
)
3921 (byte-defop-compiler-1 and
)
3922 (byte-defop-compiler-1 or
)
3923 (byte-defop-compiler-1 while
)
3924 (byte-defop-compiler-1 funcall
)
3925 (byte-defop-compiler-1 let
)
3926 (byte-defop-compiler-1 let
* byte-compile-let
)
3928 (defun byte-compile-progn (form)
3929 (byte-compile-body-do-effect (cdr form
)))
3931 (defun byte-compile-prog1 (form)
3932 (byte-compile-form-do-effect (car (cdr form
)))
3933 (byte-compile-body (cdr (cdr form
)) t
))
3935 (defun byte-compile-prog2 (form)
3936 (byte-compile-form (nth 1 form
) t
)
3937 (byte-compile-form-do-effect (nth 2 form
))
3938 (byte-compile-body (cdr (cdr (cdr form
))) t
))
3940 (defmacro byte-compile-goto-if
(cond discard tag
)
3943 (if ,discard
'byte-goto-if-not-nil
'byte-goto-if-not-nil-else-pop
)
3944 (if ,discard
'byte-goto-if-nil
'byte-goto-if-nil-else-pop
))
3947 ;; Return the list of items in CONDITION-PARAM that match PRED-LIST.
3948 ;; Only return items that are not in ONLY-IF-NOT-PRESENT.
3949 (defun byte-compile-find-bound-condition (condition-param
3951 &optional only-if-not-present
)
3955 (if (memq (car-safe condition-param
) pred-list
)
3956 ;; The condition appears by itself.
3957 (list condition-param
)
3958 ;; If the condition is an `and', look for matches among the
3960 (when (eq 'and
(car-safe condition-param
))
3961 (cdr condition-param
)))))
3963 (dolist (crt cond-list
)
3964 (when (and (memq (car-safe crt
) pred-list
)
3965 (eq 'quote
(car-safe (setq nth-one
(nth 1 crt
))))
3966 ;; Ignore if the symbol is already on the unresolved
3968 (not (assq (nth 1 nth-one
) ; the relevant symbol
3969 only-if-not-present
)))
3970 (push (nth 1 (nth 1 crt
)) result
)))
3973 (defmacro byte-compile-maybe-guarded
(condition &rest body
)
3974 "Execute forms in BODY, potentially guarded by CONDITION.
3975 CONDITION is a variable whose value is a test in an `if' or `cond'.
3976 BODY is the code to compile in the first arm of the if or the body of
3977 the cond clause. If CONDITION's value is of the form (fboundp \\='foo)
3978 or (boundp \\='foo), the relevant warnings from BODY about foo's
3979 being undefined (or obsolete) will be suppressed.
3981 If CONDITION's value is (not (featurep \\='emacs)) or (featurep \\='xemacs),
3982 that suppresses all warnings during execution of BODY."
3983 (declare (indent 1) (debug t
))
3984 `(let* ((fbound-list (byte-compile-find-bound-condition
3985 ,condition
'(fboundp functionp
)
3986 byte-compile-unresolved-functions
))
3987 (bound-list (byte-compile-find-bound-condition
3988 ,condition
'(boundp default-boundp
)))
3989 ;; Maybe add to the bound list.
3990 (byte-compile-bound-variables
3991 (append bound-list byte-compile-bound-variables
)))
3993 ;; If things not being bound at all is ok, so must them being
3994 ;; obsolete. Note that we add to the existing lists since Tramp
3995 ;; (ab)uses this feature.
3996 ;; FIXME: If `foo' is obsoleted by `bar', the code below
3997 ;; correctly arranges to silence the warnings after testing
3998 ;; existence of `foo', but the warning should also be
3999 ;; silenced after testing the existence of `bar'.
4000 (let ((byte-compile-not-obsolete-vars
4001 (append byte-compile-not-obsolete-vars bound-list
))
4002 (byte-compile-not-obsolete-funcs
4003 (append byte-compile-not-obsolete-funcs fbound-list
)))
4005 ;; Maybe remove the function symbol from the unresolved list.
4006 (dolist (fbound fbound-list
)
4008 (setq byte-compile-unresolved-functions
4009 (delq (assq fbound byte-compile-unresolved-functions
)
4010 byte-compile-unresolved-functions
)))))))
4012 (defun byte-compile-if (form)
4013 (byte-compile-form (car (cdr form
)))
4014 ;; Check whether we have `(if (fboundp ...' or `(if (boundp ...'
4015 ;; and avoid warnings about the relevant symbols in the consequent.
4016 (let ((clause (nth 1 form
))
4017 (donetag (byte-compile-make-tag)))
4018 (if (null (nthcdr 3 form
))
4021 (byte-compile-goto-if nil byte-compile--for-effect donetag
)
4022 (byte-compile-maybe-guarded clause
4023 (byte-compile-form (nth 2 form
) byte-compile--for-effect
))
4024 (byte-compile-out-tag donetag
))
4025 (let ((elsetag (byte-compile-make-tag)))
4026 (byte-compile-goto 'byte-goto-if-nil elsetag
)
4027 (byte-compile-maybe-guarded clause
4028 (byte-compile-form (nth 2 form
) byte-compile--for-effect
))
4029 (byte-compile-goto 'byte-goto donetag
)
4030 (byte-compile-out-tag elsetag
)
4031 (byte-compile-maybe-guarded (list 'not clause
)
4032 (byte-compile-body (cdr (cdr (cdr form
))) byte-compile--for-effect
))
4033 (byte-compile-out-tag donetag
))))
4034 (setq byte-compile--for-effect nil
))
4036 (defun byte-compile-cond-vars (obj1 obj2
)
4037 ;; We make sure that of OBJ1 and OBJ2, one of them is a symbol,
4038 ;; and the other is a constant expression whose value can be
4039 ;; compared with `eq' (with `macroexp-const-p').
4041 (and (symbolp obj1
) (macroexp-const-p obj2
) (cons obj1 obj2
))
4042 (and (symbolp obj2
) (macroexp-const-p obj1
) (cons obj2 obj1
))))
4044 (defun byte-compile-cond-jump-table-info (clauses)
4045 "If CLAUSES is a `cond' form where:
4046 The condition for each clause is of the form (TEST VAR VALUE).
4048 TEST and VAR are the same throughout all conditions.
4049 VALUE satisfies `macroexp-const-p'.
4051 Return a list of the form ((TEST . VAR) ((VALUE BODY) ...))"
4056 (dolist (clause (cdr clauses
) ok
)
4057 (let* ((condition (car clause
))
4058 (test (car-safe condition
))
4059 (vars (when (consp condition
)
4060 (byte-compile-cond-vars (cadr condition
) (cl-caddr condition
))))
4061 (obj1 (car-safe vars
))
4062 (obj2 (cdr-safe vars
))
4063 (body (cdr-safe clause
)))
4065 (setq prev-var obj1
))
4067 (setq prev-test test
))
4068 (if (and obj1
(memq test
'(eq eql equal
))
4072 ;; discard duplicate clauses
4073 (not (assq obj2 cases
)))
4074 (push (list (if (consp obj2
) (eval obj2
) obj2
) body
) cases
)
4075 (if (and (macroexp-const-p condition
) condition
)
4076 (progn (push (list 'default
(or body
`(,condition
))) cases
)
4079 (throw 'break nil
))))))
4080 (list (cons prev-test prev-var
) (nreverse cases
)))))
4082 (defun byte-compile-cond-jump-table (clauses)
4083 (let* ((table-info (byte-compile-cond-jump-table-info clauses
))
4084 (test (caar table-info
))
4085 (var (cdar table-info
))
4086 (cases (cadr table-info
))
4087 jump-table test-obj body tag donetag default-tag default-case
)
4088 (when (and cases
(not (= (length cases
) 1)))
4089 ;; TODO: Once :linear-search is implemented for `make-hash-table'
4090 ;; set it to `t' for cond forms with a small number of cases.
4091 (setq jump-table
(make-hash-table :test test
4093 :size
(if (assq 'default cases
)
4096 default-tag
(byte-compile-make-tag)
4097 donetag
(byte-compile-make-tag))
4098 ;; The structure of byte-switch code:
4101 ;; constant #s(hash-table purecopy t data (val1 (TAG1) val2 (TAG2)))
4111 ;; <body for `t' clause, if any (else `constant nil')>
4114 (byte-compile-variable-ref var
)
4115 (byte-compile-push-constant jump-table
)
4116 (byte-compile-out 'byte-switch
)
4118 ;; When the opcode argument is `byte-goto', `byte-compile-goto' sets
4119 ;; `byte-compile-depth' to `nil'. However, we need `byte-compile-depth'
4120 ;; to be non-nil for generating tags for all cases. Since
4121 ;; `byte-compile-depth' will increase by at most 1 after compiling
4122 ;; all of the clause (which is further enforced by cl-assert below)
4123 ;; it should be safe to preserve it's value.
4124 (let ((byte-compile-depth byte-compile-depth
))
4125 (byte-compile-goto 'byte-goto default-tag
))
4127 (when (assq 'default cases
)
4128 (setq default-case
(cadr (assq 'default cases
))
4129 cases
(butlast cases
1)))
4131 (dolist (case cases
)
4132 (setq tag
(byte-compile-make-tag)
4133 test-obj
(nth 0 case
)
4135 (byte-compile-out-tag tag
)
4136 (puthash test-obj tag jump-table
)
4138 (let ((byte-compile-depth byte-compile-depth
)
4139 (init-depth byte-compile-depth
))
4140 ;; Since `byte-compile-body' might increase `byte-compile-depth'
4141 ;; by 1, not preserving it's value will cause it to potentially
4142 ;; increase by one for every clause body compiled, causing
4143 ;; depth/tag conflicts or violating asserts down the road.
4144 ;; To make sure `byte-compile-body' itself doesn't violate this,
4145 ;; we use `cl-assert'.
4147 (byte-compile-form t byte-compile--for-effect
)
4148 (byte-compile-body body byte-compile--for-effect
))
4149 (cl-assert (or (= byte-compile-depth init-depth
)
4150 (= byte-compile-depth
(1+ init-depth
))))
4151 (byte-compile-goto 'byte-goto donetag
)
4152 (setcdr (cdr donetag
) nil
)))
4154 (byte-compile-out-tag default-tag
)
4156 (byte-compile-body-do-effect default-case
)
4157 (byte-compile-constant nil
))
4158 (byte-compile-out-tag donetag
)
4159 (push jump-table byte-compile-jump-tables
))))
4161 (defun byte-compile-cond (clauses)
4162 (or (and byte-compile-cond-use-jump-table
4163 (byte-compile-cond-jump-table clauses
))
4164 (let ((donetag (byte-compile-make-tag))
4166 (while (setq clauses
(cdr clauses
))
4167 (setq clause
(car clauses
))
4168 (cond ((or (eq (car clause
) t
)
4169 (and (eq (car-safe (car clause
)) 'quote
)
4170 (car-safe (cdr-safe (car clause
)))))
4171 ;; Unconditional clause
4172 (setq clause
(cons t clause
)
4175 (byte-compile-form (car clause
))
4176 (if (null (cdr clause
))
4177 ;; First clause is a singleton.
4178 (byte-compile-goto-if t byte-compile--for-effect donetag
)
4179 (setq nexttag
(byte-compile-make-tag))
4180 (byte-compile-goto 'byte-goto-if-nil nexttag
)
4181 (byte-compile-maybe-guarded (car clause
)
4182 (byte-compile-body (cdr clause
) byte-compile--for-effect
))
4183 (byte-compile-goto 'byte-goto donetag
)
4184 (byte-compile-out-tag nexttag
)))))
4186 (let ((guard (car clause
)))
4187 (and (cdr clause
) (not (eq guard t
))
4188 (progn (byte-compile-form guard
)
4189 (byte-compile-goto-if nil byte-compile--for-effect donetag
)
4190 (setq clause
(cdr clause
))))
4191 (byte-compile-maybe-guarded guard
4192 (byte-compile-body-do-effect clause
)))
4193 (byte-compile-out-tag donetag
))))
4195 (defun byte-compile-and (form)
4196 (let ((failtag (byte-compile-make-tag))
4199 (byte-compile-form-do-effect t
)
4200 (byte-compile-and-recursion args failtag
))))
4202 ;; Handle compilation of a nontrivial `and' call.
4203 ;; We use tail recursion so we can use byte-compile-maybe-guarded.
4204 (defun byte-compile-and-recursion (rest failtag
)
4207 (byte-compile-form (car rest
))
4208 (byte-compile-goto-if nil byte-compile--for-effect failtag
)
4209 (byte-compile-maybe-guarded (car rest
)
4210 (byte-compile-and-recursion (cdr rest
) failtag
)))
4211 (byte-compile-form-do-effect (car rest
))
4212 (byte-compile-out-tag failtag
)))
4214 (defun byte-compile-or (form)
4215 (let ((wintag (byte-compile-make-tag))
4218 (byte-compile-form-do-effect nil
)
4219 (byte-compile-or-recursion args wintag
))))
4221 ;; Handle compilation of a nontrivial `or' call.
4222 ;; We use tail recursion so we can use byte-compile-maybe-guarded.
4223 (defun byte-compile-or-recursion (rest wintag
)
4226 (byte-compile-form (car rest
))
4227 (byte-compile-goto-if t byte-compile--for-effect wintag
)
4228 (byte-compile-maybe-guarded (list 'not
(car rest
))
4229 (byte-compile-or-recursion (cdr rest
) wintag
)))
4230 (byte-compile-form-do-effect (car rest
))
4231 (byte-compile-out-tag wintag
)))
4233 (defun byte-compile-while (form)
4234 (let ((endtag (byte-compile-make-tag))
4235 (looptag (byte-compile-make-tag)))
4236 (byte-compile-out-tag looptag
)
4237 (byte-compile-form (car (cdr form
)))
4238 (byte-compile-goto-if nil byte-compile--for-effect endtag
)
4239 (byte-compile-body (cdr (cdr form
)) t
)
4240 (byte-compile-goto 'byte-goto looptag
)
4241 (byte-compile-out-tag endtag
)
4242 (setq byte-compile--for-effect nil
)))
4244 (defun byte-compile-funcall (form)
4247 (mapc 'byte-compile-form
(cdr form
))
4248 (byte-compile-out 'byte-call
(length (cdr (cdr form
)))))
4249 (byte-compile-report-error
4250 (format-message "`funcall' called with no arguments"))
4251 (byte-compile-form '(signal 'wrong-number-of-arguments
'(funcall 0))
4252 byte-compile--for-effect
)))
4257 (defun byte-compile-push-binding-init (clause)
4258 "Emit byte-codes to push the initialization value for CLAUSE on the stack.
4259 Return the offset in the form (VAR . OFFSET)."
4260 (let* ((var (if (consp clause
) (car clause
) clause
)))
4261 ;; We record the stack position even of dynamic bindings; we'll put
4262 ;; them in the proper place later.
4263 (prog1 (cons var byte-compile-depth
)
4265 (byte-compile-form (cadr clause
))
4266 (byte-compile-push-constant nil
)))))
4268 (defun byte-compile-not-lexical-var-p (var)
4269 (or (not (symbolp var
))
4270 (special-variable-p var
)
4271 (memq var byte-compile-bound-variables
)
4275 (defun byte-compile-bind (var init-lexenv
)
4276 "Emit byte-codes to bind VAR and update `byte-compile--lexical-environment'.
4277 INIT-LEXENV should be a lexical-environment alist describing the
4278 positions of the init value that have been pushed on the stack.
4279 Return non-nil if the TOS value was popped."
4280 ;; The mix of lexical and dynamic bindings mean that we may have to
4281 ;; juggle things on the stack, to move them to TOS for
4283 (if (and lexical-binding
(not (byte-compile-not-lexical-var-p var
)))
4284 ;; VAR is a simple stack-allocated lexical variable.
4285 (progn (push (assq var init-lexenv
)
4286 byte-compile--lexical-environment
)
4288 ;; VAR should be dynamically bound.
4289 (while (assq var byte-compile--lexical-environment
)
4290 ;; This dynamic binding shadows a lexical binding.
4291 (setq byte-compile--lexical-environment
4292 (remq (assq var byte-compile--lexical-environment
)
4293 byte-compile--lexical-environment
)))
4295 ((eq var
(caar init-lexenv
))
4296 ;; VAR is dynamic and is on the top of the
4297 ;; stack, so we can just bind it like usual.
4298 (byte-compile-dynamic-variable-bind var
)
4301 ;; VAR is dynamic, but we have to get its
4302 ;; value out of the middle of the stack.
4303 (let ((stack-pos (cdr (assq var init-lexenv
))))
4304 (byte-compile-stack-ref stack-pos
)
4305 (byte-compile-dynamic-variable-bind var
)
4306 ;; Now we have to store nil into its temporary
4307 ;; stack position so it doesn't prevent the value from being GC'd.
4308 ;; FIXME: Not worth the trouble.
4309 ;; (byte-compile-push-constant nil)
4310 ;; (byte-compile-stack-set stack-pos)
4314 (defun byte-compile-unbind (clauses init-lexenv preserve-body-value
)
4315 "Emit byte-codes to unbind the variables bound by CLAUSES.
4316 CLAUSES is a `let'-style variable binding list. INIT-LEXENV should be a
4317 lexical-environment alist describing the positions of the init value that
4318 have been pushed on the stack. If PRESERVE-BODY-VALUE is true,
4319 then an additional value on the top of the stack, above any lexical binding
4320 slots, is preserved, so it will be on the top of the stack after all
4321 binding slots have been popped."
4322 ;; Unbind dynamic variables.
4323 (let ((num-dynamic-bindings 0))
4324 (dolist (clause clauses
)
4325 (unless (assq (if (consp clause
) (car clause
) clause
)
4326 byte-compile--lexical-environment
)
4327 (setq num-dynamic-bindings
(1+ num-dynamic-bindings
))))
4328 (unless (zerop num-dynamic-bindings
)
4329 (byte-compile-out 'byte-unbind num-dynamic-bindings
)))
4330 ;; Pop lexical variables off the stack, possibly preserving the
4331 ;; return value of the body.
4333 ;; INIT-LEXENV contains all init values left on the stack.
4334 (byte-compile-discard (length init-lexenv
) preserve-body-value
)))
4336 (defun byte-compile-let (form)
4337 "Generate code for the `let' or `let*' form FORM."
4338 (let ((clauses (cadr form
))
4340 (is-let (eq (car form
) 'let
)))
4342 ;; First compute the binding values in the old scope.
4343 (dolist (var clauses
)
4344 (push (byte-compile-push-binding-init var
) init-lexenv
)))
4346 (let ((byte-compile-bound-variables byte-compile-bound-variables
)
4347 (byte-compile--lexical-environment
4348 byte-compile--lexical-environment
))
4349 ;; Bind the variables.
4350 ;; For `let', do it in reverse order, because it makes no
4351 ;; semantic difference, but it is a lot more efficient since the
4352 ;; values are now in reverse order on the stack.
4353 (dolist (var (if is-let
(reverse clauses
) clauses
))
4355 (push (byte-compile-push-binding-init var
) init-lexenv
))
4356 (let ((var (if (consp var
) (car var
) var
)))
4357 (if (byte-compile-bind var init-lexenv
)
4358 (pop init-lexenv
))))
4360 (let ((init-stack-depth byte-compile-depth
))
4361 (byte-compile-body-do-effect (cdr (cdr form
)))
4362 ;; Unbind both lexical and dynamic variables.
4363 (cl-assert (or (eq byte-compile-depth init-stack-depth
)
4364 (eq byte-compile-depth
(1+ init-stack-depth
))))
4365 (byte-compile-unbind clauses init-lexenv
4366 (> byte-compile-depth init-stack-depth
))))))
4370 (byte-defop-compiler-1 /= byte-compile-negated
)
4371 (byte-defop-compiler-1 atom byte-compile-negated
)
4372 (byte-defop-compiler-1 nlistp byte-compile-negated
)
4374 (put '/= 'byte-compile-negated-op
'=)
4375 (put 'atom
'byte-compile-negated-op
'consp
)
4376 (put 'nlistp
'byte-compile-negated-op
'listp
)
4378 (defun byte-compile-negated (form)
4379 (byte-compile-form-do-effect (byte-compile-negation-optimizer form
)))
4381 ;; Even when optimization is off, /= is optimized to (not (= ...)).
4382 (defun byte-compile-negation-optimizer (form)
4383 ;; an optimizer for forms where <form1> is less efficient than (not <form2>)
4384 (byte-compile-set-symbol-position (car form
))
4386 (cons (or (get (car form
) 'byte-compile-negated-op
)
4388 "Compiler error: `%s' has no `byte-compile-negated-op' property"
4392 ;;; other tricky macro-like special-forms
4394 (byte-defop-compiler-1 catch
)
4395 (byte-defop-compiler-1 unwind-protect
)
4396 (byte-defop-compiler-1 condition-case
)
4397 (byte-defop-compiler-1 save-excursion
)
4398 (byte-defop-compiler-1 save-current-buffer
)
4399 (byte-defop-compiler-1 save-restriction
)
4400 ;; (byte-defop-compiler-1 save-window-excursion) ;Obsolete: now a macro.
4401 ;; (byte-defop-compiler-1 with-output-to-temp-buffer) ;Obsolete: now a macro.
4403 (defvar byte-compile--use-old-handlers nil
4404 "If nil, use new byte codes introduced in Emacs-24.4.")
4406 (defun byte-compile-catch (form)
4407 (byte-compile-form (car (cdr form
)))
4408 (if (not byte-compile--use-old-handlers
)
4409 (let ((endtag (byte-compile-make-tag)))
4410 (byte-compile-goto 'byte-pushcatch endtag
)
4411 (byte-compile-body (cddr form
) nil
)
4412 (byte-compile-out 'byte-pophandler
)
4413 (byte-compile-out-tag endtag
))
4416 (byte-compile-form `(list 'funcall
,f
)))
4418 (byte-compile-push-constant
4419 (byte-compile-top-level (cons 'progn body
) byte-compile--for-effect
))))
4420 (byte-compile-out 'byte-catch
0)))
4422 (defun byte-compile-unwind-protect (form)
4426 (if byte-compile--use-old-handlers
`(list (list 'funcall
,f
)) f
)))
4428 (if byte-compile--use-old-handlers
4429 (byte-compile-push-constant
4430 (byte-compile-top-level-body handlers t
))
4431 (byte-compile-form `#'(lambda () ,@handlers
)))))
4432 (byte-compile-out 'byte-unwind-protect
0)
4433 (byte-compile-form-do-effect (car (cdr form
)))
4434 (byte-compile-out 'byte-unbind
1))
4436 (defun byte-compile-condition-case (form)
4437 (if byte-compile--use-old-handlers
4438 (byte-compile-condition-case--old form
)
4439 (byte-compile-condition-case--new form
)))
4441 (defun byte-compile-condition-case--old (form)
4442 (let* ((var (nth 1 form
))
4443 (fun-bodies (eq var
:fun-body
))
4444 (byte-compile-bound-variables
4445 (if (and var
(not fun-bodies
))
4446 (cons var byte-compile-bound-variables
)
4447 byte-compile-bound-variables
)))
4448 (byte-compile-set-symbol-position 'condition-case
)
4449 (unless (symbolp var
)
4451 "`%s' is not a variable-name or nil (in condition-case)" var
))
4452 (if fun-bodies
(setq var
(make-symbol "err")))
4453 (byte-compile-push-constant var
)
4455 (byte-compile-form `(list 'funcall
,(nth 2 form
)))
4456 (byte-compile-push-constant
4457 (byte-compile-top-level (nth 2 form
) byte-compile--for-effect
)))
4458 (let ((compiled-clauses
4461 (let ((condition (car clause
)))
4462 (cond ((not (or (symbolp condition
)
4463 (and (listp condition
)
4465 (dolist (sym condition
)
4466 (if (not (symbolp sym
))
4470 "`%S' is not a condition name or list of such (in condition-case)"
4472 ;; (not (or (eq condition 't)
4473 ;; (and (stringp (get condition 'error-message))
4474 ;; (consp (get condition
4475 ;; 'error-conditions)))))
4476 ;; (byte-compile-warn
4477 ;; "`%s' is not a known condition name
4478 ;; (in condition-case)"
4482 `(list ',condition
(list 'funcall
,(cadr clause
) ',var
))
4484 (byte-compile-top-level-body
4485 (cdr clause
) byte-compile--for-effect
)))))
4486 (cdr (cdr (cdr form
))))))
4488 (byte-compile-form `(list ,@compiled-clauses
))
4489 (byte-compile-push-constant compiled-clauses
)))
4490 (byte-compile-out 'byte-condition-case
0)))
4492 (defun byte-compile-condition-case--new (form)
4493 (let* ((var (nth 1 form
))
4495 (depth byte-compile-depth
)
4496 (clauses (mapcar (lambda (clause)
4497 (cons (byte-compile-make-tag) clause
))
4499 (endtag (byte-compile-make-tag)))
4500 (byte-compile-set-symbol-position 'condition-case
)
4501 (unless (symbolp var
)
4503 "`%s' is not a variable-name or nil (in condition-case)" var
))
4505 (dolist (clause (reverse clauses
))
4506 (let ((condition (nth 1 clause
)))
4507 (unless (consp condition
) (setq condition
(list condition
)))
4508 (dolist (c condition
)
4509 (unless (and c
(symbolp c
))
4511 "`%S' is not a condition name (in condition-case)" c
))
4512 ;; In reality, the `error-conditions' property is only required
4513 ;; for the argument to `signal', not to `condition-case'.
4514 ;;(unless (consp (get c 'error-conditions))
4515 ;; (byte-compile-warn
4516 ;; "`%s' is not a known condition name (in condition-case)"
4519 (byte-compile-push-constant condition
))
4520 (byte-compile-goto 'byte-pushconditioncase
(car clause
)))
4522 (byte-compile-form body
) ;; byte-compile--for-effect
4523 (dolist (_ clauses
) (byte-compile-out 'byte-pophandler
))
4524 (byte-compile-goto 'byte-goto endtag
)
4527 (let ((clause (pop clauses
))
4528 (byte-compile-bound-variables byte-compile-bound-variables
)
4529 (byte-compile--lexical-environment
4530 byte-compile--lexical-environment
))
4531 (setq byte-compile-depth
(1+ depth
))
4532 (byte-compile-out-tag (pop clause
))
4533 (dolist (_ clauses
) (byte-compile-out 'byte-pophandler
))
4535 ((null var
) (byte-compile-discard))
4537 (push (cons var
(1- byte-compile-depth
))
4538 byte-compile--lexical-environment
))
4539 (t (byte-compile-dynamic-variable-bind var
)))
4540 (byte-compile-body (cdr clause
)) ;; byte-compile--for-effect
4543 (lexical-binding (byte-compile-discard 1 'preserve-tos
))
4544 (t (byte-compile-out 'byte-unbind
1)))
4545 (byte-compile-goto 'byte-goto endtag
)))
4547 (byte-compile-out-tag endtag
)))
4549 (defun byte-compile-save-excursion (form)
4550 (if (and (eq 'set-buffer
(car-safe (car-safe (cdr form
))))
4551 (byte-compile-warning-enabled-p 'suspicious
))
4553 "Use `with-current-buffer' rather than save-excursion+set-buffer"))
4554 (byte-compile-out 'byte-save-excursion
0)
4555 (byte-compile-body-do-effect (cdr form
))
4556 (byte-compile-out 'byte-unbind
1))
4558 (defun byte-compile-save-restriction (form)
4559 (byte-compile-out 'byte-save-restriction
0)
4560 (byte-compile-body-do-effect (cdr form
))
4561 (byte-compile-out 'byte-unbind
1))
4563 (defun byte-compile-save-current-buffer (form)
4564 (byte-compile-out 'byte-save-current-buffer
0)
4565 (byte-compile-body-do-effect (cdr form
))
4566 (byte-compile-out 'byte-unbind
1))
4568 ;;; top-level forms elsewhere
4570 (byte-defop-compiler-1 defvar
)
4571 (byte-defop-compiler-1 defconst byte-compile-defvar
)
4572 (byte-defop-compiler-1 autoload
)
4573 (byte-defop-compiler-1 lambda byte-compile-lambda-form
)
4575 ;; If foo.el declares `toto' as obsolete, it is likely that foo.el will
4576 ;; actually use `toto' in order for this obsolete variable to still work
4577 ;; correctly, so paradoxically, while byte-compiling foo.el, the presence
4578 ;; of a make-obsolete-variable call for `toto' is an indication that `toto'
4579 ;; should not trigger obsolete-warnings in foo.el.
4580 (byte-defop-compiler-1 make-obsolete-variable
)
4581 (defun byte-compile-make-obsolete-variable (form)
4582 (when (eq 'quote
(car-safe (nth 1 form
)))
4583 (push (nth 1 (nth 1 form
)) byte-compile-global-not-obsolete-vars
))
4584 (byte-compile-normal-call form
))
4586 (defconst byte-compile-tmp-var
(make-symbol "def-tmp-var"))
4588 (defun byte-compile-defvar (form)
4589 ;; This is not used for file-level defvar/consts.
4590 (when (and (symbolp (nth 1 form
))
4591 (not (string-match "[-*/:$]" (symbol-name (nth 1 form
))))
4592 (byte-compile-warning-enabled-p 'lexical
))
4593 (byte-compile-warn "global/dynamic var `%s' lacks a prefix"
4595 (let ((fun (nth 0 form
))
4597 (value (nth 2 form
))
4598 (string (nth 3 form
)))
4599 (byte-compile-set-symbol-position fun
)
4600 (when (or (> (length form
) 4)
4601 (and (eq fun
'defconst
) (null (cddr form
))))
4602 (let ((ncall (length (cdr form
))))
4604 "`%s' called with %d argument%s, but %s %s"
4606 (if (= 1 ncall
) "" "s")
4607 (if (< ncall
2) "requires" "accepts only")
4609 (push var byte-compile-bound-variables
)
4610 (if (eq fun
'defconst
)
4611 (push var byte-compile-const-variables
))
4612 (when (and string
(not (stringp string
)))
4613 (byte-compile-warn "third arg to `%s %s' is not a string: %s"
4615 (byte-compile-form-do-effect
4616 (if (cddr form
) ; `value' provided
4617 ;; Quote with `quote' to prevent byte-compiling the body,
4618 ;; which would lead to an inf-loop.
4619 `(funcall '(lambda (,byte-compile-tmp-var
)
4620 (,fun
,var
,byte-compile-tmp-var
,@(nthcdr 3 form
)))
4622 (if (eq fun
'defconst
)
4623 ;; This will signal an appropriate error at runtime.
4625 ;; A simple (defvar foo) just returns foo.
4628 (defun byte-compile-autoload (form)
4629 (byte-compile-set-symbol-position 'autoload
)
4630 (and (macroexp-const-p (nth 1 form
))
4631 (macroexp-const-p (nth 5 form
))
4632 (memq (eval (nth 5 form
)) '(t macro
)) ; macro-p
4633 (not (fboundp (eval (nth 1 form
))))
4635 "The compiler ignores `autoload' except at top level. You should
4636 probably put the autoload of the macro `%s' at top-level."
4637 (eval (nth 1 form
))))
4638 (byte-compile-normal-call form
))
4640 ;; Lambdas in valid places are handled as special cases by various code.
4641 ;; The ones that remain are errors.
4642 (defun byte-compile-lambda-form (_form)
4643 (byte-compile-set-symbol-position 'lambda
)
4644 (error "`lambda' used as function name is invalid"))
4646 ;; Compile normally, but deal with warnings for the function being defined.
4647 (put 'defalias
'byte-hunk-handler
'byte-compile-file-form-defalias
)
4648 ;; Used for eieio--defalias as well.
4649 (defun byte-compile-file-form-defalias (form)
4650 ;; For the compilation itself, we could largely get rid of this hunk-handler,
4651 ;; if it weren't for the fact that we need to figure out when a defalias
4652 ;; defines a macro, so as to add it to byte-compile-macro-environment.
4654 ;; FIXME: we also use this hunk-handler to implement the function's dynamic
4655 ;; docstring feature. We could actually implement it more elegantly in
4656 ;; byte-compile-lambda so it applies to all lambdas, but the problem is that
4657 ;; the resulting .elc format will not be recognized by make-docfile, so
4658 ;; either we stop using DOC for the docstrings of preloaded elc files (at the
4659 ;; cost of around 24KB on 32bit hosts, double on 64bit hosts) or we need to
4660 ;; build DOC in a more clever way (e.g. handle anonymous elements).
4661 (let ((byte-compile-free-references nil
)
4662 (byte-compile-free-assignments nil
))
4664 ;; Decompose `form' into:
4665 ;; - `name' is the name of the defined function.
4666 ;; - `arg' is the expression to which it is defined.
4667 ;; - `rest' is the rest of the arguments.
4668 (`(,_
',name
,arg .
,rest
)
4670 ;; `macro' is non-nil if it defines a macro.
4671 ;; `fun' is the function part of `arg' (defaults to `arg').
4672 (((or (and (or `(cons 'macro
,fun
) `'(macro .
,fun
)) (let macro t
))
4673 (and (let fun arg
) (let macro nil
)))
4675 ;; `lam' is the lambda expression in `fun' (or nil if not
4677 ((or `(,(or `quote
`function
) ,lam
) (let lam nil
))
4679 ;; `arglist' is the list of arguments (or t if not recognized).
4680 ;; `body' is the body of `lam' (or t if not recognized).
4681 ((or `(lambda ,arglist .
,body
)
4682 ;; `(closure ,_ ,arglist . ,body)
4683 (and `(internal-make-closure ,arglist .
,_
) (let body t
))
4684 (and (let arglist t
) (let body t
)))
4686 (unless (byte-compile-file-form-defmumble
4687 name macro arglist body rest
)
4690 (message "Macro %s unrecognized, won't work in file" name
)
4691 (message "Macro %s partly recognized, trying our luck" name
)
4692 (push (cons name
(eval fun
))
4693 byte-compile-macro-environment
)))
4694 (byte-compile-keep-pending form
))))
4696 ;; We used to just do: (byte-compile-normal-call form)
4697 ;; But it turns out that this fails to optimize the code.
4698 ;; So instead we now do the same as what other byte-hunk-handlers do,
4699 ;; which is to call back byte-compile-file-form and then return nil.
4700 ;; Except that we can't just call byte-compile-file-form since it would
4701 ;; call us right back.
4702 (_ (byte-compile-keep-pending form
)))))
4704 (byte-defop-compiler-1 with-no-warnings byte-compile-no-warnings
)
4705 (defun byte-compile-no-warnings (form)
4706 (let (byte-compile-warnings)
4707 (byte-compile-form (cons 'progn
(cdr form
)))))
4709 ;; Warn about misuses of make-variable-buffer-local.
4710 (byte-defop-compiler-1 make-variable-buffer-local
4711 byte-compile-make-variable-buffer-local
)
4712 (defun byte-compile-make-variable-buffer-local (form)
4713 (if (and (eq (car-safe (car-safe (cdr-safe form
))) 'quote
)
4714 (byte-compile-warning-enabled-p 'make-local
))
4716 "`make-variable-buffer-local' not called at toplevel"))
4717 (byte-compile-normal-call form
))
4718 (put 'make-variable-buffer-local
4719 'byte-hunk-handler
'byte-compile-form-make-variable-buffer-local
)
4720 (defun byte-compile-form-make-variable-buffer-local (form)
4721 (byte-compile-keep-pending form
'byte-compile-normal-call
))
4723 (put 'function-put
'byte-hunk-handler
'byte-compile-define-symbol-prop
)
4724 (put 'define-symbol-prop
'byte-hunk-handler
'byte-compile-define-symbol-prop
)
4725 (defun byte-compile-define-symbol-prop (form)
4727 ((and `(,op
,fun
,prop
,val
)
4728 (guard (and (macroexp-const-p fun
)
4729 (macroexp-const-p prop
)
4730 (or (macroexp-const-p val
)
4731 ;; Also accept anonymous functions, since
4732 ;; we're at top-level which implies they're
4734 (pcase val
(`(function (lambda .
,_
)) t
))))))
4735 (byte-compile-push-constant op
)
4736 (byte-compile-form fun
)
4737 (byte-compile-form prop
)
4738 (let* ((fun (eval fun
))
4740 (val (if (macroexp-const-p val
)
4742 (byte-compile-lambda (cadr val
)))))
4744 .
(,prop
,val
,@(alist-get fun overriding-plist-environment
)))
4745 overriding-plist-environment
)
4746 (byte-compile-push-constant val
)
4747 (byte-compile-out 'byte-call
3)
4750 (_ (byte-compile-keep-pending form
))))
4754 ;; Note: Most operations will strip off the 'TAG, but it speeds up
4755 ;; optimization to have the 'TAG as a part of the tag.
4756 ;; Tags will be (TAG . (tag-number . stack-depth)).
4757 (defun byte-compile-make-tag ()
4758 (list 'TAG
(setq byte-compile-tag-number
(1+ byte-compile-tag-number
))))
4761 (defun byte-compile-out-tag (tag)
4762 (setq byte-compile-output
(cons tag byte-compile-output
))
4765 ;; ## remove this someday
4766 (and byte-compile-depth
4767 (not (= (cdr (cdr tag
)) byte-compile-depth
))
4768 (error "Compiler bug: depth conflict at tag %d" (car (cdr tag
))))
4769 (setq byte-compile-depth
(cdr (cdr tag
))))
4770 (setcdr (cdr tag
) byte-compile-depth
)))
4772 (defun byte-compile-goto (opcode tag
)
4773 (push (cons opcode tag
) byte-compile-output
)
4774 (setcdr (cdr tag
) (if (memq opcode byte-goto-always-pop-ops
)
4775 (1- byte-compile-depth
)
4776 byte-compile-depth
))
4777 (setq byte-compile-depth
(and (not (eq opcode
'byte-goto
))
4778 (1- byte-compile-depth
))))
4780 (defun byte-compile-stack-adjustment (op operand
)
4781 "Return the amount by which an operation adjusts the stack.
4782 OP and OPERAND are as passed to `byte-compile-out'."
4783 (if (memq op
'(byte-call byte-discardN byte-discardN-preserve-tos
))
4784 ;; For calls, OPERAND is the number of args, so we pop OPERAND + 1
4785 ;; elements, and the push the result, for a total of -OPERAND.
4786 ;; For discardN*, of course, we just pop OPERAND elements.
4788 (or (aref byte-stack
+-info
(symbol-value op
))
4789 ;; Ops with a nil entry in `byte-stack+-info' are byte-codes
4790 ;; that take OPERAND values off the stack and push a result, for
4791 ;; a total of 1 - OPERAND
4794 (defun byte-compile-out (op &optional operand
)
4795 (push (cons op operand
) byte-compile-output
)
4796 (if (eq op
'byte-return
)
4797 ;; This is actually an unnecessary case, because there should be no
4798 ;; more ops behind byte-return.
4799 (setq byte-compile-depth nil
)
4800 (setq byte-compile-depth
4801 (+ byte-compile-depth
(byte-compile-stack-adjustment op operand
)))
4802 (setq byte-compile-maxdepth
(max byte-compile-depth byte-compile-maxdepth
))
4803 ;;(if (< byte-compile-depth 0) (error "Compiler error: stack underflow"))
4808 (defun byte-compile-annotate-call-tree (form)
4810 ;; annotate the current call
4811 (if (setq entry
(assq (car form
) byte-compile-call-tree
))
4812 (or (memq byte-compile-current-form
(nth 1 entry
)) ;callers
4814 (cons byte-compile-current-form
(nth 1 entry
))))
4815 (setq byte-compile-call-tree
4816 (cons (list (car form
) (list byte-compile-current-form
) nil
)
4817 byte-compile-call-tree
)))
4818 ;; annotate the current function
4819 (if (setq entry
(assq byte-compile-current-form byte-compile-call-tree
))
4820 (or (memq (car form
) (nth 2 entry
)) ;called
4821 (setcar (cdr (cdr entry
))
4822 (cons (car form
) (nth 2 entry
))))
4823 (setq byte-compile-call-tree
4824 (cons (list byte-compile-current-form nil
(list (car form
)))
4825 byte-compile-call-tree
)))
4828 ;; Renamed from byte-compile-report-call-tree
4829 ;; to avoid interfering with completion of byte-compile-file.
4831 (defun display-call-tree (&optional filename
)
4832 "Display a call graph of a specified file.
4833 This lists which functions have been called, what functions called
4834 them, and what functions they call. The list includes all functions
4835 whose definitions have been compiled in this Emacs session, as well as
4836 all functions called by those functions.
4838 The call graph does not include macros, inline functions, or
4839 primitives that the byte-code interpreter knows about directly
4840 \(`eq', `cons', etc.).
4842 The call tree also lists those functions which are not known to be called
4843 \(that is, to which no calls have been compiled), and which cannot be
4844 invoked interactively."
4846 (message "Generating call tree...")
4847 (with-output-to-temp-buffer "*Call-Tree*"
4848 (set-buffer "*Call-Tree*")
4850 (message "Generating call tree... (sorting on %s)"
4851 byte-compile-call-tree-sort
)
4852 (insert "Call tree for "
4853 (cond ((null byte-compile-current-file
) (or filename
"???"))
4854 ((stringp byte-compile-current-file
)
4855 byte-compile-current-file
)
4856 (t (buffer-name byte-compile-current-file
)))
4858 (prin1-to-string byte-compile-call-tree-sort
)
4860 (if byte-compile-call-tree-sort
4861 (setq byte-compile-call-tree
4862 (sort byte-compile-call-tree
4863 (pcase byte-compile-call-tree-sort
4865 (lambda (x y
) (< (length (nth 1 x
))
4866 (length (nth 1 y
)))))
4868 (lambda (x y
) (< (length (nth 2 x
))
4869 (length (nth 2 y
)))))
4871 (lambda (x y
) (< (+ (length (nth 1 x
))
4873 (+ (length (nth 1 y
))
4874 (length (nth 2 y
))))))
4876 (lambda (x y
) (string< (car x
) (car y
))))
4877 (_ (error "`byte-compile-call-tree-sort': `%s' - unknown sort mode"
4878 byte-compile-call-tree-sort
))))))
4879 (message "Generating call tree...")
4880 (let ((rest byte-compile-call-tree
)
4881 (b (current-buffer))
4885 (prin1 (car (car rest
)) b
)
4886 (setq callers
(nth 1 (car rest
))
4887 calls
(nth 2 (car rest
)))
4889 (cond ((not (fboundp (setq f
(car (car rest
)))))
4891 " <top level>";; shouldn't insert nil then, actually -sk
4893 ((subrp (setq f
(symbol-function f
)))
4896 (format " ==> %s" f
))
4897 ((byte-code-function-p f
)
4898 "<compiled function>")
4900 "<malformed function>")
4901 ((eq 'macro
(car f
))
4902 (if (or (byte-code-function-p (cdr f
))
4903 (assq 'byte-code
(cdr (cdr (cdr f
)))))
4906 ((assq 'byte-code
(cdr (cdr f
)))
4907 "<compiled lambda>")
4908 ((eq 'lambda
(car f
))
4911 (format " (%d callers + %d calls = %d)"
4912 ;; Does the optimizer eliminate common subexpressions?-sk
4915 (+ (length callers
) (length calls
)))
4919 (insert " called by:\n")
4921 (insert " " (if (car callers
)
4922 (mapconcat 'symbol-name callers
", ")
4924 (let ((fill-prefix " "))
4925 (fill-region-as-paragraph p
(point)))
4926 (unless (= 0 (current-column))
4930 (insert " calls:\n")
4932 (insert " " (mapconcat 'symbol-name calls
", "))
4933 (let ((fill-prefix " "))
4934 (fill-region-as-paragraph p
(point)))
4935 (unless (= 0 (current-column))
4937 (setq rest
(cdr rest
)))
4939 (message "Generating call tree...(finding uncalled functions...)")
4940 (setq rest byte-compile-call-tree
)
4943 (or (nth 1 (car rest
))
4944 (null (setq f
(caar rest
)))
4946 (setq def
(byte-compile-fdefinition f t
))
4947 (and (eq (car-safe def
) 'macro
)
4948 (eq (car-safe (cdr-safe def
)) 'lambda
)
4949 (setq def
(cdr def
)))
4952 (setq def
(byte-compile-fdefinition f nil
))
4953 (and (eq (car-safe def
) 'macro
)
4954 (eq (car-safe (cdr-safe def
)) 'lambda
)
4955 (setq def
(cdr def
)))
4957 (setq uncalled
(cons f uncalled
)))
4958 (setq rest
(cdr rest
)))
4960 (let ((fill-prefix " "))
4961 (insert "Noninteractive functions not known to be called:\n ")
4963 (insert (mapconcat 'symbol-name
(nreverse uncalled
) ", "))
4964 (fill-region-as-paragraph p
(point))))))
4965 (message "Generating call tree...done.")))
4969 (defun batch-byte-compile-if-not-done ()
4970 "Like `byte-compile-file' but doesn't recompile if already up to date.
4971 Use this from the command line, with `-batch';
4972 it won't work in an interactive Emacs."
4973 (batch-byte-compile t
))
4975 ;;; by crl@newton.purdue.edu
4976 ;;; Only works noninteractively.
4978 (defun batch-byte-compile (&optional noforce
)
4979 "Run `byte-compile-file' on the files remaining on the command line.
4980 Use this from the command line, with `-batch';
4981 it won't work in an interactive Emacs.
4982 Each file is processed even if an error occurred previously.
4983 For example, invoke \"emacs -batch -f batch-byte-compile $emacs/ ~/*.el\".
4984 If NOFORCE is non-nil, don't recompile a file that seems to be
4985 already up-to-date."
4986 ;; command-line-args-left is what is left of the command line, from
4988 (defvar command-line-args-left
) ;Avoid 'free variable' warning
4989 (if (not noninteractive
)
4990 (error "`batch-byte-compile' is to be used only with -batch"))
4991 ;; Better crash loudly than attempting to recover from undefined
4993 (setq attempt-stack-overflow-recovery nil
4994 attempt-orderly-shutdown-on-fatal-signal nil
)
4996 (while command-line-args-left
4997 (if (file-directory-p (expand-file-name (car command-line-args-left
)))
4998 ;; Directory as argument.
5000 (dolist (file (directory-files (car command-line-args-left
)))
5001 (if (and (string-match emacs-lisp-file-regexp file
)
5002 (not (auto-save-file-name-p file
))
5004 (expand-file-name file
5005 (car command-line-args-left
)))
5006 (setq dest
(byte-compile-dest-file source
))
5007 (file-exists-p dest
)
5008 (file-newer-than-file-p source dest
))
5009 (if (null (batch-byte-compile-file source
))
5011 ;; Specific file argument
5012 (if (or (not noforce
)
5013 (let* ((source (car command-line-args-left
))
5014 (dest (byte-compile-dest-file source
)))
5015 (or (not (file-exists-p dest
))
5016 (file-newer-than-file-p source dest
))))
5017 (if (null (batch-byte-compile-file (car command-line-args-left
)))
5019 (setq command-line-args-left
(cdr command-line-args-left
)))
5020 (kill-emacs (if error
1 0))))
5022 (defun batch-byte-compile-file (file)
5023 (let ((byte-compile-root-dir (or byte-compile-root-dir default-directory
)))
5025 (byte-compile-file file
)
5027 (byte-compile-file file
)
5029 (message (if (cdr err
)
5030 ">>Error occurred processing %s: %s (%s)"
5031 ">>Error occurred processing %s: %s")
5033 (get (car err
) 'error-message
)
5034 (prin1-to-string (cdr err
)))
5035 (let ((destfile (byte-compile-dest-file file
)))
5036 (if (file-exists-p destfile
)
5037 (delete-file destfile
)))
5040 (message (if (cdr err
)
5041 ">>Error occurred processing %s: %s (%s)"
5042 ">>Error occurred processing %s: %s")
5044 (get (car err
) 'error-message
)
5045 (prin1-to-string (cdr err
)))
5048 (defun byte-compile-refresh-preloaded ()
5049 "Reload any Lisp file that was changed since Emacs was dumped.
5051 (let* ((argv0 (car command-line-args
))
5052 (emacs-file (executable-find argv0
)))
5053 (if (not (and emacs-file
(file-executable-p emacs-file
)))
5054 (message "Can't find %s to refresh preloaded Lisp files" argv0
)
5055 (dolist (f (reverse load-history
))
5057 (if (string-match "elc\\'" f
) (setq f
(substring f
0 -
1)))
5058 (when (and (file-readable-p f
)
5059 (file-newer-than-file-p f emacs-file
)
5060 ;; Don't reload the source version of the files below
5061 ;; because that causes subsequent byte-compilation to
5062 ;; be a lot slower and need a higher max-lisp-eval-depth,
5063 ;; so it can cause recompilation to fail.
5064 (not (member (file-name-nondirectory f
)
5065 '("pcase.el" "bytecomp.el" "macroexp.el"
5066 "cconv.el" "byte-opt.el"))))
5067 (message "Reloading stale %s" (file-name-nondirectory f
))
5069 (load f
'noerror nil
'nosuffix
)
5070 ;; Probably shouldn't happen, but in case of an error, it seems
5071 ;; at least as useful to ignore it as it is to stop compilation.
5075 (defun batch-byte-recompile-directory (&optional arg
)
5076 "Run `byte-recompile-directory' on the dirs remaining on the command line.
5077 Must be used only with `-batch', and kills Emacs on completion.
5078 For example, invoke `emacs -batch -f batch-byte-recompile-directory .'.
5080 Optional argument ARG is passed as second argument ARG to
5081 `byte-recompile-directory'; see there for its possible values
5082 and corresponding effects."
5083 ;; command-line-args-left is what is left of the command line (startup.el)
5084 (defvar command-line-args-left
) ;Avoid 'free variable' warning
5085 (if (not noninteractive
)
5086 (error "batch-byte-recompile-directory is to be used only with -batch"))
5087 ;; Better crash loudly than attempting to recover from undefined
5089 (setq attempt-stack-overflow-recovery nil
5090 attempt-orderly-shutdown-on-fatal-signal nil
)
5091 (or command-line-args-left
5092 (setq command-line-args-left
'(".")))
5093 (while command-line-args-left
5094 (byte-recompile-directory (car command-line-args-left
) arg
)
5095 (setq command-line-args-left
(cdr command-line-args-left
)))
5098 ;;; Core compiler macros.
5100 (put 'featurep
'compiler-macro
5101 (lambda (form feature
&rest _ignore
)
5102 ;; Emacs-21's byte-code doesn't run under XEmacs or SXEmacs anyway, so
5103 ;; we can safely optimize away this test.
5104 (if (member feature
'('xemacs
'sxemacs
'emacs
))
5108 (provide 'byte-compile
)
5112 ;;; report metering (see the hacks in bytecode.c)
5114 (defvar byte-code-meter
)
5115 (defun byte-compile-report-ops ()
5116 (or (boundp 'byte-metering-on
)
5117 (error "You must build Emacs with -DBYTE_CODE_METER to use this"))
5118 (with-output-to-temp-buffer "*Meter*"
5119 (set-buffer "*Meter*")
5120 (let ((i 0) n op off
)
5122 (setq n
(aref (aref byte-code-meter
0) i
)
5124 (if t
;(not (zerop n))
5128 (cond ((< op byte-nth
)
5129 (setq off
(logand op
7))
5130 (setq op
(logand op
248)))
5131 ((>= op byte-constant
)
5132 (setq off
(- op byte-constant
)
5134 (setq op
(aref byte-code-vector op
))
5135 (insert (format "%-4d" i
))
5136 (insert (symbol-name op
))
5137 (if off
(insert " [" (int-to-string off
) "]"))
5139 (insert (int-to-string n
) "\n")))
5142 ;; To avoid "lisp nesting exceeds max-lisp-eval-depth" when bytecomp compiles
5143 ;; itself, compile some of its most used recursive functions (at load time).
5146 (or (byte-code-function-p (symbol-function 'byte-compile-form
))
5147 (assq 'byte-code
(symbol-function 'byte-compile-form
))
5148 (let ((byte-optimize nil
) ; do it fast
5149 (byte-compile-warnings nil
))
5151 (or noninteractive
(message "compiling %s..." x
))
5153 (or noninteractive
(message "compiling %s...done" x
)))
5154 '(byte-compile-normal-call
5157 ;; Inserted some more than necessary, to speed it up.
5158 byte-compile-top-level
5159 byte-compile-out-toplevel
5160 byte-compile-constant
5161 byte-compile-variable-ref
))))
5164 (run-hooks 'bytecomp-load-hook
)
5166 ;;; bytecomp.el ends here