Skip tests for json.c unless compiled with native JSON support.
[emacs.git] / lisp / emacs-lisp / byte-run.el
blobd6c43ecf4626655b1e337d3af3ffc44688f433ee
1 ;;; byte-run.el --- byte-compiler support for inlining -*- lexical-binding: t -*-
3 ;; Copyright (C) 1992, 2001-2017 Free Software Foundation, Inc.
5 ;; Author: Jamie Zawinski <jwz@lucid.com>
6 ;; Hallvard Furuseth <hbf@ulrik.uio.no>
7 ;; Maintainer: emacs-devel@gnu.org
8 ;; Keywords: internal
9 ;; Package: emacs
11 ;; This file is part of GNU Emacs.
13 ;; GNU Emacs is free software: you can redistribute it and/or modify
14 ;; it under the terms of the GNU General Public License as published by
15 ;; the Free Software Foundation, either version 3 of the License, or
16 ;; (at your option) any later version.
18 ;; GNU Emacs is distributed in the hope that it will be useful,
19 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
20 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
21 ;; GNU General Public License for more details.
23 ;; You should have received a copy of the GNU General Public License
24 ;; along with GNU Emacs. If not, see <https://www.gnu.org/licenses/>.
26 ;;; Commentary:
28 ;; interface to selectively inlining functions.
29 ;; This only happens when source-code optimization is turned on.
31 ;;; Code:
33 (defalias 'function-put
34 ;; We don't want people to just use `put' because we can't conveniently
35 ;; hook into `put' to remap old properties to new ones. But for now, there's
36 ;; no such remapping, so we just call `put'.
37 #'(lambda (function prop value)
38 "Set FUNCTION's property PROP to VALUE.
39 The namespace for PROP is shared with symbols.
40 So far, FUNCTION can only be a symbol, not a lambda expression."
41 (put function prop value)))
42 (function-put 'defmacro 'doc-string-elt 3)
43 (function-put 'defmacro 'lisp-indent-function 2)
45 ;; `macro-declaration-function' are both obsolete (as marked at the end of this
46 ;; file) but used in many .elc files.
48 (defvar macro-declaration-function #'macro-declaration-function
49 "Function to process declarations in a macro definition.
50 The function will be called with two args MACRO and DECL.
51 MACRO is the name of the macro being defined.
52 DECL is a list `(declare ...)' containing the declarations.
53 The value the function returns is not used.")
55 (defalias 'macro-declaration-function
56 #'(lambda (macro decl)
57 "Process a declaration found in a macro definition.
58 This is set as the value of the variable `macro-declaration-function'.
59 MACRO is the name of the macro being defined.
60 DECL is a list `(declare ...)' containing the declarations.
61 The return value of this function is not used."
62 ;; We can't use `dolist' or `cadr' yet for bootstrapping reasons.
63 (let (d)
64 ;; Ignore the first element of `decl' (it's always `declare').
65 (while (setq decl (cdr decl))
66 (setq d (car decl))
67 (if (and (consp d)
68 (listp (cdr d))
69 (null (cdr (cdr d))))
70 (cond ((eq (car d) 'indent)
71 (put macro 'lisp-indent-function (car (cdr d))))
72 ((eq (car d) 'debug)
73 (put macro 'edebug-form-spec (car (cdr d))))
74 ((eq (car d) 'doc-string)
75 (put macro 'doc-string-elt (car (cdr d))))
77 (message "Unknown declaration %s" d)))
78 (message "Invalid declaration %s" d))))))
80 ;; We define macro-declaration-alist here because it is needed to
81 ;; handle declarations in macro definitions and this is the first file
82 ;; loaded by loadup.el that uses declarations in macros.
84 ;; Add any new entries to info node `(elisp)Declare Form'.
85 (defvar defun-declarations-alist
86 (list
87 ;; We can only use backquotes inside the lambdas and not for those
88 ;; properties that are used by functions loaded before backquote.el.
89 (list 'advertised-calling-convention
90 #'(lambda (f _args arglist when)
91 (list 'set-advertised-calling-convention
92 (list 'quote f) (list 'quote arglist) (list 'quote when))))
93 (list 'obsolete
94 #'(lambda (f _args new-name when)
95 (list 'make-obsolete
96 (list 'quote f) (list 'quote new-name) (list 'quote when))))
97 (list 'interactive-only
98 #'(lambda (f _args instead)
99 (list 'function-put (list 'quote f)
100 ''interactive-only (list 'quote instead))))
101 ;; FIXME: Merge `pure' and `side-effect-free'.
102 (list 'pure
103 #'(lambda (f _args val)
104 (list 'function-put (list 'quote f)
105 ''pure (list 'quote val)))
106 "If non-nil, the compiler can replace calls with their return value.
107 This may shift errors from run-time to compile-time.")
108 (list 'side-effect-free
109 #'(lambda (f _args val)
110 (list 'function-put (list 'quote f)
111 ''side-effect-free (list 'quote val)))
112 "If non-nil, calls can be ignored if their value is unused.
113 If `error-free', drop calls even if `byte-compile-delete-errors' is nil.")
114 (list 'compiler-macro
115 #'(lambda (f args compiler-function)
116 (if (not (eq (car-safe compiler-function) 'lambda))
117 `(eval-and-compile
118 (function-put ',f 'compiler-macro #',compiler-function))
119 (let ((cfname (intern (concat (symbol-name f) "--anon-cmacro"))))
120 `(progn
121 (eval-and-compile
122 (function-put ',f 'compiler-macro #',cfname))
123 ;; Don't autoload the compiler-macro itself, since the
124 ;; macroexpander will find this file via `f's autoload,
125 ;; if needed.
126 :autoload-end
127 (eval-and-compile
128 (defun ,cfname (,@(cadr compiler-function) ,@args)
129 ,@(cddr compiler-function))))))))
130 (list 'doc-string
131 #'(lambda (f _args pos)
132 (list 'function-put (list 'quote f)
133 ''doc-string-elt (list 'quote pos))))
134 (list 'indent
135 #'(lambda (f _args val)
136 (list 'function-put (list 'quote f)
137 ''lisp-indent-function (list 'quote val)))))
138 "List associating function properties to their macro expansion.
139 Each element of the list takes the form (PROP FUN) where FUN is
140 a function. For each (PROP . VALUES) in a function's declaration,
141 the FUN corresponding to PROP is called with the function name,
142 the function's arglist, and the VALUES and should return the code to use
143 to set this property.
145 This is used by `declare'.")
147 (defvar macro-declarations-alist
148 (cons
149 (list 'debug
150 #'(lambda (name _args spec)
151 (list 'progn :autoload-end
152 (list 'put (list 'quote name)
153 ''edebug-form-spec (list 'quote spec)))))
154 (cons
155 (list 'no-font-lock-keyword
156 #'(lambda (name _args val)
157 (list 'function-put (list 'quote name)
158 ''no-font-lock-keyword (list 'quote val))))
159 defun-declarations-alist))
160 "List associating properties of macros to their macro expansion.
161 Each element of the list takes the form (PROP FUN) where FUN is a function.
162 For each (PROP . VALUES) in a macro's declaration, the FUN corresponding
163 to PROP is called with the macro name, the macro's arglist, and the VALUES
164 and should return the code to use to set this property.
166 This is used by `declare'.")
168 (defalias 'defmacro
169 (cons
170 'macro
171 #'(lambda (name arglist &optional docstring &rest body)
172 "Define NAME as a macro.
173 When the macro is called, as in (NAME ARGS...),
174 the function (lambda ARGLIST BODY...) is applied to
175 the list ARGS... as it appears in the expression,
176 and the result should be a form to be evaluated instead of the original.
177 DECL is a declaration, optional, of the form (declare DECLS...) where
178 DECLS is a list of elements of the form (PROP . VALUES). These are
179 interpreted according to `macro-declarations-alist'.
180 The return value is undefined.
182 \(fn NAME ARGLIST &optional DOCSTRING DECL &rest BODY)"
183 ;; We can't just have `decl' as an &optional argument, because we need
184 ;; to distinguish
185 ;; (defmacro foo (arg) (bar) nil)
186 ;; from
187 ;; (defmacro foo (arg) (bar)).
188 (let ((decls (cond
189 ((eq (car-safe docstring) 'declare)
190 (prog1 (cdr docstring) (setq docstring nil)))
191 ((and (stringp docstring)
192 (eq (car-safe (car body)) 'declare))
193 (prog1 (cdr (car body)) (setq body (cdr body)))))))
194 (if docstring (setq body (cons docstring body))
195 (if (null body) (setq body '(nil))))
196 ;; Can't use backquote because it's not defined yet!
197 (let* ((fun (list 'function (cons 'lambda (cons arglist body))))
198 (def (list 'defalias
199 (list 'quote name)
200 (list 'cons ''macro fun)))
201 (declarations
202 (mapcar
203 #'(lambda (x)
204 (let ((f (cdr (assq (car x) macro-declarations-alist))))
205 (if f (apply (car f) name arglist (cdr x))
206 (message "Warning: Unknown macro property %S in %S"
207 (car x) name))))
208 decls)))
209 ;; Refresh font-lock if this is a new macro, or it is an
210 ;; existing macro whose 'no-font-lock-keyword declaration
211 ;; has changed.
212 (if (and
213 ;; If lisp-mode hasn't been loaded, there's no reason
214 ;; to flush.
215 (fboundp 'lisp--el-font-lock-flush-elisp-buffers)
216 (or (not (fboundp name)) ;; new macro
217 (and (fboundp name) ;; existing macro
218 (member `(function-put ',name 'no-font-lock-keyword
219 ',(get name 'no-font-lock-keyword))
220 declarations))))
221 (lisp--el-font-lock-flush-elisp-buffers))
222 (if declarations
223 (cons 'prog1 (cons def declarations))
224 def))))))
226 ;; Now that we defined defmacro we can use it!
227 (defmacro defun (name arglist &optional docstring &rest body)
228 "Define NAME as a function.
229 The definition is (lambda ARGLIST [DOCSTRING] BODY...).
230 See also the function `interactive'.
231 DECL is a declaration, optional, of the form (declare DECLS...) where
232 DECLS is a list of elements of the form (PROP . VALUES). These are
233 interpreted according to `defun-declarations-alist'.
234 The return value is undefined.
236 \(fn NAME ARGLIST &optional DOCSTRING DECL &rest BODY)"
237 ;; We can't just have `decl' as an &optional argument, because we need
238 ;; to distinguish
239 ;; (defun foo (arg) (toto) nil)
240 ;; from
241 ;; (defun foo (arg) (toto)).
242 (declare (doc-string 3) (indent 2))
243 (or name (error "Cannot define '%s' as a function" name))
244 (if (null
245 (and (listp arglist)
246 (null (delq t (mapcar #'symbolp arglist)))))
247 (error "Malformed arglist: %s" arglist))
248 (let ((decls (cond
249 ((eq (car-safe docstring) 'declare)
250 (prog1 (cdr docstring) (setq docstring nil)))
251 ((and (stringp docstring)
252 (eq (car-safe (car body)) 'declare))
253 (prog1 (cdr (car body)) (setq body (cdr body)))))))
254 (if docstring (setq body (cons docstring body))
255 (if (null body) (setq body '(nil))))
256 (let ((declarations
257 (mapcar
258 #'(lambda (x)
259 (let ((f (cdr (assq (car x) defun-declarations-alist))))
260 (cond
261 (f (apply (car f) name arglist (cdr x)))
262 ;; Yuck!!
263 ((and (featurep 'cl)
264 (memq (car x) ;C.f. cl-do-proclaim.
265 '(special inline notinline optimize warn)))
266 (push (list 'declare x)
267 (if (stringp docstring)
268 (if (eq (car-safe (cadr body)) 'interactive)
269 (cddr body)
270 (cdr body))
271 (if (eq (car-safe (car body)) 'interactive)
272 (cdr body)
273 body)))
274 nil)
275 (t (message "Warning: Unknown defun property `%S' in %S"
276 (car x) name)))))
277 decls))
278 (def (list 'defalias
279 (list 'quote name)
280 (list 'function
281 (cons 'lambda
282 (cons arglist body))))))
283 (if declarations
284 (cons 'prog1 (cons def declarations))
285 def))))
288 ;; Redefined in byte-opt.el.
289 ;; This was undocumented and unused for decades.
290 (defalias 'inline 'progn
291 "Like `progn', but when compiled inline top-level function calls in body.
292 You don't need this. (See bytecomp.el commentary for more details.)
294 \(fn BODY...)")
296 ;;; Interface to inline functions.
298 ;; (defmacro proclaim-inline (&rest fns)
299 ;; "Cause the named functions to be open-coded when called from compiled code.
300 ;; They will only be compiled open-coded when byte-compile-optimize is true."
301 ;; (cons 'eval-and-compile
302 ;; (mapcar (lambda (x)
303 ;; (or (memq (get x 'byte-optimizer)
304 ;; '(nil byte-compile-inline-expand))
305 ;; (error
306 ;; "%s already has a byte-optimizer, can't make it inline"
307 ;; x))
308 ;; (list 'put (list 'quote x)
309 ;; ''byte-optimizer ''byte-compile-inline-expand))
310 ;; fns)))
312 ;; (defmacro proclaim-notinline (&rest fns)
313 ;; "Cause the named functions to no longer be open-coded."
314 ;; (cons 'eval-and-compile
315 ;; (mapcar (lambda (x)
316 ;; (if (eq (get x 'byte-optimizer) 'byte-compile-inline-expand)
317 ;; (put x 'byte-optimizer nil))
318 ;; (list 'if (list 'eq (list 'get (list 'quote x) ''byte-optimizer)
319 ;; ''byte-compile-inline-expand)
320 ;; (list 'put x ''byte-optimizer nil)))
321 ;; fns)))
323 (defmacro defsubst (name arglist &rest body)
324 "Define an inline function. The syntax is just like that of `defun'.
326 \(fn NAME ARGLIST &optional DOCSTRING DECL &rest BODY)"
327 (declare (debug defun) (doc-string 3))
328 (or (memq (get name 'byte-optimizer)
329 '(nil byte-compile-inline-expand))
330 (error "`%s' is a primitive" name))
331 `(prog1
332 (defun ,name ,arglist ,@body)
333 (eval-and-compile
334 (put ',name 'byte-optimizer 'byte-compile-inline-expand))))
336 (defvar advertised-signature-table (make-hash-table :test 'eq :weakness 'key))
338 (defun set-advertised-calling-convention (function signature _when)
339 "Set the advertised SIGNATURE of FUNCTION.
340 This will allow the byte-compiler to warn the programmer when she uses
341 an obsolete calling convention. WHEN specifies since when the calling
342 convention was modified."
343 (puthash (indirect-function function) signature
344 advertised-signature-table))
346 (defun make-obsolete (obsolete-name current-name &optional when)
347 "Make the byte-compiler warn that function OBSOLETE-NAME is obsolete.
348 OBSOLETE-NAME should be a function name or macro name (a symbol).
350 The warning will say that CURRENT-NAME should be used instead.
351 If CURRENT-NAME is a string, that is the `use instead' message
352 \(it should end with a period, and not start with a capital).
353 WHEN should be a string indicating when the function
354 was first made obsolete, for example a date or a release number."
355 (declare (advertised-calling-convention
356 ;; New code should always provide the `when' argument.
357 (obsolete-name current-name when) "23.1"))
358 (put obsolete-name 'byte-obsolete-info
359 ;; The second entry used to hold the `byte-compile' handler, but
360 ;; is not used any more nowadays.
361 (purecopy (list current-name nil when)))
362 obsolete-name)
364 (defmacro define-obsolete-function-alias (obsolete-name current-name
365 &optional when docstring)
366 "Set OBSOLETE-NAME's function definition to CURRENT-NAME and mark it obsolete.
368 \(define-obsolete-function-alias \\='old-fun \\='new-fun \"22.1\" \"old-fun's doc.\")
370 is equivalent to the following two lines of code:
372 \(defalias \\='old-fun \\='new-fun \"old-fun's doc.\")
373 \(make-obsolete \\='old-fun \\='new-fun \"22.1\")
375 If provided, WHEN should be a string indicating when the function
376 was first made obsolete, for example a date or a release number.
378 See the docstrings of `defalias' and `make-obsolete' for more details."
379 (declare (doc-string 4)
380 (advertised-calling-convention
381 ;; New code should always provide the `when' argument.
382 (obsolete-name current-name when &optional docstring) "23.1"))
383 `(progn
384 (defalias ,obsolete-name ,current-name ,docstring)
385 (make-obsolete ,obsolete-name ,current-name ,when)))
387 (defun make-obsolete-variable (obsolete-name current-name &optional when access-type)
388 "Make the byte-compiler warn that OBSOLETE-NAME is obsolete.
389 The warning will say that CURRENT-NAME should be used instead.
390 If CURRENT-NAME is a string, that is the `use instead' message.
391 WHEN should be a string indicating when the variable
392 was first made obsolete, for example a date or a release number.
393 ACCESS-TYPE if non-nil should specify the kind of access that will trigger
394 obsolescence warnings; it can be either `get' or `set'."
395 (declare (advertised-calling-convention
396 ;; New code should always provide the `when' argument.
397 (obsolete-name current-name when &optional access-type) "23.1"))
398 (put obsolete-name 'byte-obsolete-variable
399 (purecopy (list current-name access-type when)))
400 obsolete-name)
403 (defmacro define-obsolete-variable-alias (obsolete-name current-name
404 &optional when docstring)
405 "Make OBSOLETE-NAME a variable alias for CURRENT-NAME and mark it obsolete.
406 This uses `defvaralias' and `make-obsolete-variable' (which see).
407 See the Info node `(elisp)Variable Aliases' for more details.
409 If CURRENT-NAME is a defcustom or a defvar (more generally, any variable
410 where OBSOLETE-NAME may be set, e.g. in an init file, before the
411 alias is defined), then the define-obsolete-variable-alias
412 statement should be evaluated before the defcustom, if user
413 customizations are to be respected. The simplest way to achieve
414 this is to place the alias statement before the defcustom (this
415 is not necessary for aliases that are autoloaded, or in files
416 dumped with Emacs). This is so that any user customizations are
417 applied before the defcustom tries to initialize the
418 variable (this is due to the way `defvaralias' works).
420 If provided, WHEN should be a string indicating when the variable
421 was first made obsolete, for example a date or a release number.
423 For the benefit of `custom-set-variables', if OBSOLETE-NAME has
424 any of the following properties, they are copied to
425 CURRENT-NAME, if it does not already have them:
426 `saved-value', `saved-variable-comment'."
427 (declare (doc-string 4)
428 (advertised-calling-convention
429 ;; New code should always provide the `when' argument.
430 (obsolete-name current-name when &optional docstring) "23.1"))
431 `(progn
432 (defvaralias ,obsolete-name ,current-name ,docstring)
433 ;; See Bug#4706.
434 (dolist (prop '(saved-value saved-variable-comment))
435 (and (get ,obsolete-name prop)
436 (null (get ,current-name prop))
437 (put ,current-name prop (get ,obsolete-name prop))))
438 (make-obsolete-variable ,obsolete-name ,current-name ,when)))
440 ;; FIXME This is only defined in this file because the variable- and
441 ;; function- versions are too. Unlike those two, this one is not used
442 ;; by the byte-compiler (would be nice if it could warn about obsolete
443 ;; faces, but it doesn't really do anything special with faces).
444 ;; It only really affects M-x describe-face output.
445 (defmacro define-obsolete-face-alias (obsolete-face current-face when)
446 "Make OBSOLETE-FACE a face alias for CURRENT-FACE and mark it obsolete.
447 If provided, WHEN should be a string indicating when the face
448 was first made obsolete, for example a date or a release number."
449 `(progn
450 (put ,obsolete-face 'face-alias ,current-face)
451 ;; Used by M-x describe-face.
452 (put ,obsolete-face 'obsolete-face (or (purecopy ,when) t))))
454 (defmacro dont-compile (&rest body)
455 "Like `progn', but the body always runs interpreted (not compiled).
456 If you think you need this, you're probably making a mistake somewhere."
457 (declare (debug t) (indent 0) (obsolete nil "24.4"))
458 (list 'eval (list 'quote (if (cdr body) (cons 'progn body) (car body)))))
461 ;; interface to evaluating things at compile time and/or load time
462 ;; these macro must come after any uses of them in this file, as their
463 ;; definition in the file overrides the magic definitions on the
464 ;; byte-compile-macro-environment.
466 (defmacro eval-when-compile (&rest body)
467 "Like `progn', but evaluates the body at compile time if you're compiling.
468 Thus, the result of the body appears to the compiler as a quoted
469 constant. In interpreted code, this is entirely equivalent to
470 `progn', except that the value of the expression may be (but is
471 not necessarily) computed at load time if eager macro expansion
472 is enabled."
473 (declare (debug (&rest def-form)) (indent 0))
474 (list 'quote (eval (cons 'progn body) lexical-binding)))
476 (defmacro eval-and-compile (&rest body)
477 "Like `progn', but evaluates the body at compile time and at
478 load time. In interpreted code, this is entirely equivalent to
479 `progn', except that the value of the expression may be (but is
480 not necessarily) computed at load time if eager macro expansion
481 is enabled."
482 (declare (debug (&rest def-form)) (indent 0))
483 ;; When the byte-compiler expands code, this macro is not used, so we're
484 ;; either about to run `body' (plain interpretation) or we're doing eager
485 ;; macroexpansion.
486 (list 'quote (eval (cons 'progn body) lexical-binding)))
488 (defun with-no-warnings (&rest body)
489 "Like `progn', but prevents compiler warnings in the body."
490 (declare (indent 0))
491 ;; The implementation for the interpreter is basically trivial.
492 (car (last body)))
495 ;; I nuked this because it's not a good idea for users to think of using it.
496 ;; These options are a matter of installation preference, and have nothing to
497 ;; with particular source files; it's a mistake to suggest to users
498 ;; they should associate these with particular source files.
499 ;; There is hardly any reason to change these parameters, anyway.
500 ;; --rms.
502 ;; (put 'byte-compiler-options 'lisp-indent-function 0)
503 ;; (defmacro byte-compiler-options (&rest args)
504 ;; "Set some compilation-parameters for this file. This will affect only the
505 ;; file in which it appears; this does nothing when evaluated, and when loaded
506 ;; from a .el file.
508 ;; Each argument to this macro must be a list of a key and a value.
510 ;; Keys: Values: Corresponding variable:
512 ;; verbose t, nil byte-compile-verbose
513 ;; optimize t, nil, source, byte byte-compile-optimize
514 ;; warnings list of warnings byte-compile-warnings
515 ;; Valid elements: (callargs redefine free-vars unresolved)
516 ;; file-format emacs18, emacs19 byte-compile-compatibility
518 ;; For example, this might appear at the top of a source file:
520 ;; (byte-compiler-options
521 ;; (optimize t)
522 ;; (warnings (- free-vars)) ; Don't warn about free variables
523 ;; (file-format emacs19))"
524 ;; nil)
526 (make-obsolete-variable 'macro-declaration-function
527 'macro-declarations-alist "24.3")
528 (make-obsolete 'macro-declaration-function
529 'macro-declarations-alist "24.3")
531 ;;; byte-run.el ends here