scheme interaction mode
[bpt/emacs.git] / lisp / emacs-lisp / byte-run.el
1 ;;; byte-run.el --- byte-compiler support for inlining -*- lexical-binding: t -*-
2
3 ;; Copyright (C) 1992, 2001-2014 Free Software Foundation, Inc.
4
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
10
11 ;; This file is part of GNU Emacs.
12
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.
17
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.
22
23 ;; You should have received a copy of the GNU General Public License
24 ;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
25
26 ;;; Commentary:
27
28 ;; interface to selectively inlining functions.
29 ;; This only happens when source-code optimization is turned on.
30
31 ;;; Code:
32
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 (f prop value) (put f prop value))
38 "Set function F's property PROP to VALUE.
39 The namespace for PROP is shared with symbols.
40 So far, F can only be a symbol, not a lambda expression.")
41 (function-put 'defmacro 'doc-string-elt 3)
42 (function-put 'defmacro 'lisp-indent-function 2)
43
44 ;; `macro-declaration-function' are both obsolete (as marked at the end of this
45 ;; file) but used in many .elc files.
46
47 (defvar macro-declaration-function #'macro-declaration-function
48 "Function to process declarations in a macro definition.
49 The function will be called with two args MACRO and DECL.
50 MACRO is the name of the macro being defined.
51 DECL is a list `(declare ...)' containing the declarations.
52 The value the function returns is not used.")
53
54 (defalias 'macro-declaration-function
55 #'(lambda (macro decl)
56 "Process a declaration found in a macro definition.
57 This is set as the value of the variable `macro-declaration-function'.
58 MACRO is the name of the macro being defined.
59 DECL is a list `(declare ...)' containing the declarations.
60 The return value of this function is not used."
61 ;; We can't use `dolist' or `cadr' yet for bootstrapping reasons.
62 (let (d)
63 ;; Ignore the first element of `decl' (it's always `declare').
64 (while (setq decl (cdr decl))
65 (setq d (car decl))
66 (if (and (consp d)
67 (listp (cdr d))
68 (null (cdr (cdr d))))
69 (cond ((eq (car d) 'indent)
70 (put macro 'lisp-indent-function (car (cdr d))))
71 ((eq (car d) 'debug)
72 (put macro 'edebug-form-spec (car (cdr d))))
73 ((eq (car d) 'doc-string)
74 (put macro 'doc-string-elt (car (cdr d))))
75 (t
76 (message "Unknown declaration %s" d)))
77 (message "Invalid declaration %s" d))))))
78
79 ;; We define macro-declaration-alist here because it is needed to
80 ;; handle declarations in macro definitions and this is the first file
81 ;; loaded by loadup.el that uses declarations in macros.
82
83 ;; Add any new entries to info node `(elisp)Declare Form'.
84 (eval-and-compile
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 `(eval-and-compile
117 (function-put ',f 'compiler-macro
118 ,(if (eq (car-safe compiler-function) 'lambda)
119 `(lambda ,(append (cadr compiler-function) args)
120 ,@(cddr compiler-function))
121 `#',compiler-function)))))
122 (list 'doc-string
123 #'(lambda (f _args pos)
124 (list 'function-put (list 'quote f)
125 ''doc-string-elt (list 'quote pos))))
126 (list 'indent
127 #'(lambda (f _args val)
128 (list 'function-put (list 'quote f)
129 ''lisp-indent-function (list 'quote val)))))
130 "List associating function properties to their macro expansion.
131 Each element of the list takes the form (PROP FUN) where FUN is
132 a function. For each (PROP . VALUES) in a function's declaration,
133 the FUN corresponding to PROP is called with the function name,
134 the function's arglist, and the VALUES and should return the code to use
135 to set this property.
136
137 This is used by `declare'.")
138
139 (defvar macro-declarations-alist
140 (cons
141 (list 'debug
142 #'(lambda (name _args spec)
143 (list 'progn :autoload-end
144 (list 'put (list 'quote name)
145 ''edebug-form-spec (list 'quote spec)))))
146 defun-declarations-alist)
147 "List associating properties of macros to their macro expansion.
148 Each element of the list takes the form (PROP FUN) where FUN is a function.
149 For each (PROP . VALUES) in a macro's declaration, the FUN corresponding
150 to PROP is called with the macro name, the macro's arglist, and the VALUES
151 and should return the code to use to set this property.
152
153 This is used by `declare'."))
154
155 (defalias 'defmacro
156 (cons
157 'macro
158 #'(lambda (name arglist &optional docstring &rest body)
159 "Define NAME as a macro.
160 When the macro is called, as in (NAME ARGS...),
161 the function (lambda ARGLIST BODY...) is applied to
162 the list ARGS... as it appears in the expression,
163 and the result should be a form to be evaluated instead of the original.
164 DECL is a declaration, optional, of the form (declare DECLS...) where
165 DECLS is a list of elements of the form (PROP . VALUES). These are
166 interpreted according to `macro-declarations-alist'.
167 The return value is undefined.
168
169 \(fn NAME ARGLIST &optional DOCSTRING DECL &rest BODY)"
170 ;; We can't just have `decl' as an &optional argument, because we need
171 ;; to distinguish
172 ;; (defmacro foo (arg) (bar) nil)
173 ;; from
174 ;; (defmacro foo (arg) (bar)).
175 (let ((decls (cond
176 ((eq (car-safe docstring) 'declare)
177 (prog1 (cdr docstring) (setq docstring nil)))
178 ((and (stringp docstring)
179 (eq (car-safe (car body)) 'declare))
180 (prog1 (cdr (car body)) (setq body (cdr body)))))))
181 (if docstring (setq body (cons docstring body))
182 (if (null body) (setq body '(nil))))
183 ;; Can't use backquote because it's not defined yet!
184 (let* ((fun (list 'function (cons 'lambda (cons arglist body))))
185 (def (list 'defalias
186 (list 'quote name)
187 (list 'cons ''macro fun)))
188 (declarations
189 (mapcar
190 #'(lambda (x)
191 (let ((f (cdr (assq (car x) macro-declarations-alist))))
192 (if f (apply (car f) name arglist (cdr x))
193 (message "Warning: Unknown macro property %S in %S"
194 (car x) name))))
195 decls)))
196 (list 'eval-when '(:compile-toplevel :load-toplevel :execute)
197 (if declarations
198 (cons 'prog1 (cons def declarations))
199 def)))))))
200
201 ;; Now that we defined defmacro we can use it!
202 (defmacro defun (name arglist &optional docstring &rest body)
203 "Define NAME as a function.
204 The definition is (lambda ARGLIST [DOCSTRING] BODY...).
205 See also the function `interactive'.
206 DECL is a declaration, optional, of the form (declare DECLS...) where
207 DECLS is a list of elements of the form (PROP . VALUES). These are
208 interpreted according to `defun-declarations-alist'.
209 The return value is undefined.
210
211 \(fn NAME ARGLIST &optional DOCSTRING DECL &rest BODY)"
212 ;; We can't just have `decl' as an &optional argument, because we need
213 ;; to distinguish
214 ;; (defun foo (arg) (toto) nil)
215 ;; from
216 ;; (defun foo (arg) (toto)).
217 (declare (doc-string 3) (indent 2))
218 (let ((decls (cond
219 ((eq (car-safe docstring) 'declare)
220 (prog1 (cdr docstring) (setq docstring nil)))
221 ((and (stringp docstring)
222 (eq (car-safe (car body)) 'declare))
223 (prog1 (cdr (car body)) (setq body (cdr body)))))))
224 (if docstring (setq body (cons docstring body))
225 (if (null body) (setq body '(nil))))
226 (let ((declarations
227 (mapcar
228 #'(lambda (x)
229 (let ((f (cdr (assq (car x) defun-declarations-alist))))
230 (cond
231 (f (apply (car f) name arglist (cdr x)))
232 ;; Yuck!!
233 ((and (featurep 'cl)
234 (memq (car x) ;C.f. cl-do-proclaim.
235 '(special inline notinline optimize warn)))
236 (setq body (cons (list 'declare x) body))
237 nil)
238 (t (message "Warning: Unknown defun property `%S' in %S"
239 (car x) name)))))
240 decls))
241 (def (list 'defalias
242 (list 'quote name)
243 (list 'function
244 (cons 'lambda
245 (cons arglist body))))))
246 (list 'prog1
247 (if declarations
248 (cons 'prog1 (cons def declarations))
249 def)
250 (list 'funcall
251 (list '@ '(guile) 'set-procedure-property!)
252 (list 'symbol-function (list 'quote name))
253 (list 'quote 'name)
254 (list 'quote name))))))
255 \f
256 ;; Redefined in byte-optimize.el.
257 ;; This is not documented--it's not clear that we should promote it.
258
259 (defmacro inline (&rest body)
260 (cons 'progn body))
261
262 ;;; Interface to inline functions.
263
264 ;; (defmacro proclaim-inline (&rest fns)
265 ;; "Cause the named functions to be open-coded when called from compiled code.
266 ;; They will only be compiled open-coded when byte-compile-optimize is true."
267 ;; (cons 'eval-and-compile
268 ;; (mapcar (lambda (x)
269 ;; (or (memq (get x 'byte-optimizer)
270 ;; '(nil byte-compile-inline-expand))
271 ;; (error
272 ;; "%s already has a byte-optimizer, can't make it inline"
273 ;; x))
274 ;; (list 'put (list 'quote x)
275 ;; ''byte-optimizer ''byte-compile-inline-expand))
276 ;; fns)))
277
278 ;; (defmacro proclaim-notinline (&rest fns)
279 ;; "Cause the named functions to no longer be open-coded."
280 ;; (cons 'eval-and-compile
281 ;; (mapcar (lambda (x)
282 ;; (if (eq (get x 'byte-optimizer) 'byte-compile-inline-expand)
283 ;; (put x 'byte-optimizer nil))
284 ;; (list 'if (list 'eq (list 'get (list 'quote x) ''byte-optimizer)
285 ;; ''byte-compile-inline-expand)
286 ;; (list 'put x ''byte-optimizer nil)))
287 ;; fns)))
288
289 (defmacro defsubst (name arglist &rest body)
290 "Define an inline function. The syntax is just like that of `defun'.
291 \(fn NAME ARGLIST &optional DOCSTRING DECL &rest BODY)"
292 (declare (debug defun) (doc-string 3))
293 (or (memq (get name 'byte-optimizer)
294 '(nil byte-compile-inline-expand))
295 (error "`%s' is a primitive" name))
296 `(prog1
297 (defun ,name ,arglist ,@body)
298 (eval-and-compile
299 (put ',name 'byte-optimizer 'byte-compile-inline-expand))))
300
301 (defvar advertised-signature-table (make-hash-table :test 'eq :weakness 'key))
302
303 (defun set-advertised-calling-convention (function signature _when)
304 "Set the advertised SIGNATURE of FUNCTION.
305 This will allow the byte-compiler to warn the programmer when she uses
306 an obsolete calling convention. WHEN specifies since when the calling
307 convention was modified."
308 (puthash (indirect-function function) signature
309 advertised-signature-table))
310
311 (defun make-obsolete (obsolete-name current-name &optional when)
312 "Make the byte-compiler warn that function OBSOLETE-NAME is obsolete.
313 OBSOLETE-NAME should be a function name or macro name (a symbol).
314
315 The warning will say that CURRENT-NAME should be used instead.
316 If CURRENT-NAME is a string, that is the `use instead' message
317 \(it should end with a period, and not start with a capital).
318 WHEN should be a string indicating when the function
319 was first made obsolete, for example a date or a release number."
320 (declare (advertised-calling-convention
321 ;; New code should always provide the `when' argument.
322 (obsolete-name current-name when) "23.1"))
323 (put obsolete-name 'byte-obsolete-info
324 ;; The second entry used to hold the `byte-compile' handler, but
325 ;; is not used any more nowadays.
326 (purecopy (list current-name nil when)))
327 obsolete-name)
328
329 (defmacro define-obsolete-function-alias (obsolete-name current-name
330 &optional when docstring)
331 "Set OBSOLETE-NAME's function definition to CURRENT-NAME and mark it obsolete.
332
333 \(define-obsolete-function-alias 'old-fun 'new-fun \"22.1\" \"old-fun's doc.\")
334
335 is equivalent to the following two lines of code:
336
337 \(defalias 'old-fun 'new-fun \"old-fun's doc.\")
338 \(make-obsolete 'old-fun 'new-fun \"22.1\")
339
340 See the docstrings of `defalias' and `make-obsolete' for more details."
341 (declare (doc-string 4)
342 (advertised-calling-convention
343 ;; New code should always provide the `when' argument.
344 (obsolete-name current-name when &optional docstring) "23.1"))
345 `(progn
346 (defalias ,obsolete-name ,current-name ,docstring)
347 (make-obsolete ,obsolete-name ,current-name ,when)))
348
349 (defun make-obsolete-variable (obsolete-name current-name &optional when access-type)
350 "Make the byte-compiler warn that OBSOLETE-NAME is obsolete.
351 The warning will say that CURRENT-NAME should be used instead.
352 If CURRENT-NAME is a string, that is the `use instead' message.
353 WHEN should be a string indicating when the variable
354 was first made obsolete, for example a date or a release number.
355 ACCESS-TYPE if non-nil should specify the kind of access that will trigger
356 obsolescence warnings; it can be either `get' or `set'."
357 (declare (advertised-calling-convention
358 ;; New code should always provide the `when' argument.
359 (obsolete-name current-name when &optional access-type) "23.1"))
360 (put obsolete-name 'byte-obsolete-variable
361 (purecopy (list current-name access-type when)))
362 obsolete-name)
363
364
365 (defmacro define-obsolete-variable-alias (obsolete-name current-name
366 &optional when docstring)
367 "Make OBSOLETE-NAME a variable alias for CURRENT-NAME and mark it obsolete.
368 This uses `defvaralias' and `make-obsolete-variable' (which see).
369 See the Info node `(elisp)Variable Aliases' for more details.
370
371 If CURRENT-NAME is a defcustom (more generally, any variable
372 where OBSOLETE-NAME may be set, e.g. in an init file, before the
373 alias is defined), then the define-obsolete-variable-alias
374 statement should be evaluated before the defcustom, if user
375 customizations are to be respected. The simplest way to achieve
376 this is to place the alias statement before the defcustom (this
377 is not necessary for aliases that are autoloaded, or in files
378 dumped with Emacs). This is so that any user customizations are
379 applied before the defcustom tries to initialize the
380 variable (this is due to the way `defvaralias' works).
381
382 For the benefit of `custom-set-variables', if OBSOLETE-NAME has
383 any of the following properties, they are copied to
384 CURRENT-NAME, if it does not already have them:
385 'saved-value, 'saved-variable-comment."
386 (declare (doc-string 4)
387 (advertised-calling-convention
388 ;; New code should always provide the `when' argument.
389 (obsolete-name current-name when &optional docstring) "23.1"))
390 `(progn
391 (defvaralias ,obsolete-name ,current-name ,docstring)
392 ;; See Bug#4706.
393 (dolist (prop '(saved-value saved-variable-comment))
394 (and (get ,obsolete-name prop)
395 (null (get ,current-name prop))
396 (put ,current-name prop (get ,obsolete-name prop))))
397 (make-obsolete-variable ,obsolete-name ,current-name ,when)))
398
399 ;; FIXME This is only defined in this file because the variable- and
400 ;; function- versions are too. Unlike those two, this one is not used
401 ;; by the byte-compiler (would be nice if it could warn about obsolete
402 ;; faces, but it doesn't really do anything special with faces).
403 ;; It only really affects M-x describe-face output.
404 (defmacro define-obsolete-face-alias (obsolete-face current-face when)
405 "Make OBSOLETE-FACE a face alias for CURRENT-FACE and mark it obsolete.
406 The string WHEN gives the Emacs version where OBSOLETE-FACE became
407 obsolete."
408 `(progn
409 (put ,obsolete-face 'face-alias ,current-face)
410 ;; Used by M-x describe-face.
411 (put ,obsolete-face 'obsolete-face (or (purecopy ,when) t))))
412
413 (defmacro dont-compile (&rest body)
414 "Like `progn', but the body always runs interpreted (not compiled).
415 If you think you need this, you're probably making a mistake somewhere."
416 (declare (debug t) (indent 0) (obsolete nil "24.4"))
417 (list 'eval (list 'quote (if (cdr body) (cons 'progn body) (car body)))))
418
419 \f
420 ;; interface to evaluating things at compile time and/or load time
421 ;; these macro must come after any uses of them in this file, as their
422 ;; definition in the file overrides the magic definitions on the
423 ;; byte-compile-macro-environment.
424
425 (defmacro eval-when-compile (&rest body)
426 "Like `progn', but evaluates the body at compile time if you're compiling.
427 Thus, the result of the body appears to the compiler as a quoted
428 constant. In interpreted code, this is entirely equivalent to
429 `progn', except that the value of the expression may be (but is
430 not necessarily) computed at load time if eager macro expansion
431 is enabled."
432 (declare (debug (&rest def-form)) (indent 0))
433 (list 'quote (eval (cons 'progn body) lexical-binding)))
434
435 (defmacro eval-and-compile (&rest body)
436 "Like `progn', but evaluates the body at compile time and at
437 load time. In interpreted code, this is entirely equivalent to
438 `progn', except that the value of the expression may be (but is
439 not necessarily) computed at load time if eager macro expansion
440 is enabled."
441 (declare (debug t) (indent 0))
442 ;; When the byte-compiler expands code, this macro is not used, so we're
443 ;; either about to run `body' (plain interpretation) or we're doing eager
444 ;; macroexpansion.
445 (list 'quote (eval (cons 'progn body) lexical-binding)))
446
447 (defun with-no-warnings (&rest body)
448 "Like `progn', but prevents compiler warnings in the body."
449 (declare (indent 0))
450 ;; The implementation for the interpreter is basically trivial.
451 (car (last body)))
452
453 \f
454 ;; I nuked this because it's not a good idea for users to think of using it.
455 ;; These options are a matter of installation preference, and have nothing to
456 ;; with particular source files; it's a mistake to suggest to users
457 ;; they should associate these with particular source files.
458 ;; There is hardly any reason to change these parameters, anyway.
459 ;; --rms.
460
461 ;; (put 'byte-compiler-options 'lisp-indent-function 0)
462 ;; (defmacro byte-compiler-options (&rest args)
463 ;; "Set some compilation-parameters for this file. This will affect only the
464 ;; file in which it appears; this does nothing when evaluated, and when loaded
465 ;; from a .el file.
466 ;;
467 ;; Each argument to this macro must be a list of a key and a value.
468 ;;
469 ;; Keys: Values: Corresponding variable:
470 ;;
471 ;; verbose t, nil byte-compile-verbose
472 ;; optimize t, nil, source, byte byte-compile-optimize
473 ;; warnings list of warnings byte-compile-warnings
474 ;; Valid elements: (callargs redefine free-vars unresolved)
475 ;; file-format emacs18, emacs19 byte-compile-compatibility
476 ;;
477 ;; For example, this might appear at the top of a source file:
478 ;;
479 ;; (byte-compiler-options
480 ;; (optimize t)
481 ;; (warnings (- free-vars)) ; Don't warn about free variables
482 ;; (file-format emacs19))"
483 ;; nil)
484
485 (make-obsolete-variable 'macro-declaration-function
486 'macro-declarations-alist "24.3")
487 (make-obsolete 'macro-declaration-function
488 'macro-declarations-alist "24.3")
489
490 ;;; byte-run.el ends here