* lisp/vc/diff-mode.el (diff-hunk): Don't make useless timers.
[bpt/emacs.git] / lisp / emacs-lisp / byte-run.el
CommitLineData
500fcedc 1;;; byte-run.el --- byte-compiler support for inlining -*- lexical-binding: t -*-
5e046f6d 2
acaf905b 3;; Copyright (C) 1992, 2001-2012 Free Software Foundation, Inc.
5e046f6d
JB
4
5;; Author: Jamie Zawinski <jwz@lucid.com>
6;; Hallvard Furuseth <hbf@ulrik.uio.no>
7;; Maintainer: FSF
8;; Keywords: internal
bd78fa1d 9;; Package: emacs
5e046f6d
JB
10
11;; This file is part of GNU Emacs.
12
d6cba7ae 13;; GNU Emacs is free software: you can redistribute it and/or modify
5e046f6d 14;; it under the terms of the GNU General Public License as published by
d6cba7ae
GM
15;; the Free Software Foundation, either version 3 of the License, or
16;; (at your option) any later version.
5e046f6d
JB
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
d6cba7ae 24;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
5e046f6d
JB
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
500fcedc
SM
33;; `macro-declaration-function' are both obsolete (as marked at the end of this
34;; file) but used in many .elc files.
623374a5 35
61b108cc
SM
36(defvar macro-declaration-function #'macro-declaration-function
37 "Function to process declarations in a macro definition.
38The function will be called with two args MACRO and DECL.
39MACRO is the name of the macro being defined.
40DECL is a list `(declare ...)' containing the declarations.
41The value the function returns is not used.")
42
43(defalias 'macro-declaration-function
44 #'(lambda (macro decl)
45 "Process a declaration found in a macro definition.
623374a5
LK
46This is set as the value of the variable `macro-declaration-function'.
47MACRO is the name of the macro being defined.
48DECL is a list `(declare ...)' containing the declarations.
49The return value of this function is not used."
61b108cc
SM
50 ;; We can't use `dolist' or `cadr' yet for bootstrapping reasons.
51 (let (d)
52 ;; Ignore the first element of `decl' (it's always `declare').
53 (while (setq decl (cdr decl))
54 (setq d (car decl))
55 (if (and (consp d)
56 (listp (cdr d))
57 (null (cdr (cdr d))))
58 (cond ((eq (car d) 'indent)
59 (put macro 'lisp-indent-function (car (cdr d))))
60 ((eq (car d) 'debug)
61 (put macro 'edebug-form-spec (car (cdr d))))
62 ((eq (car d) 'doc-string)
63 (put macro 'doc-string-elt (car (cdr d))))
64 (t
65 (message "Unknown declaration %s" d)))
66 (message "Invalid declaration %s" d))))))
67
500fcedc
SM
68;; We define macro-declaration-alist here because it is needed to
69;; handle declarations in macro definitions and this is the first file
70;; loaded by loadup.el that uses declarations in macros.
71
72(defvar defun-declarations-alist
500fcedc 73 (list
d9857e53
SM
74 ;; We can only use backquotes inside the lambdas and not for those
75 ;; properties that are used by functions loaded before backquote.el.
500fcedc 76 (list 'advertised-calling-convention
d9857e53 77 #'(lambda (f _args arglist when)
500fcedc
SM
78 (list 'set-advertised-calling-convention
79 (list 'quote f) (list 'quote arglist) (list 'quote when))))
d9857e53
SM
80 (list 'obsolete
81 #'(lambda (f _args new-name when)
82 `(make-obsolete ',f ',new-name ,when)))
83 (list 'compiler-macro
84 #'(lambda (f _args compiler-function)
85 `(put ',f 'compiler-macro #',compiler-function)))
500fcedc 86 (list 'doc-string
d9857e53 87 #'(lambda (f _args pos)
500fcedc
SM
88 (list 'put (list 'quote f) ''doc-string-elt (list 'quote pos))))
89 (list 'indent
d9857e53 90 #'(lambda (f _args val)
500fcedc
SM
91 (list 'put (list 'quote f)
92 ''lisp-indent-function (list 'quote val)))))
93 "List associating function properties to their macro expansion.
94Each element of the list takes the form (PROP FUN) where FUN is
95a function. For each (PROP . VALUES) in a function's declaration,
d9857e53
SM
96the FUN corresponding to PROP is called with the function name,
97the function's arglist, and the VALUES and should return the code to use
98to set this property.")
500fcedc
SM
99
100(defvar macro-declarations-alist
101 (cons
102 (list 'debug
d9857e53 103 #'(lambda (name _args spec)
500fcedc
SM
104 (list 'progn :autoload-end
105 (list 'put (list 'quote name)
106 ''edebug-form-spec (list 'quote spec)))))
107 defun-declarations-alist)
108 "List associating properties of macros to their macro expansion.
109Each element of the list takes the form (PROP FUN) where FUN is
110a function. For each (PROP . VALUES) in a macro's declaration,
111the FUN corresponding to PROP is called with the function name
112and the VALUES and should return the code to use to set this property.")
113
61b108cc
SM
114(put 'defmacro 'doc-string-elt 3)
115(defalias 'defmacro
116 (cons
117 'macro
118 #'(lambda (name arglist &optional docstring decl &rest body)
119 "Define NAME as a macro.
120When the macro is called, as in (NAME ARGS...),
121the function (lambda ARGLIST BODY...) is applied to
122the list ARGS... as it appears in the expression,
123and the result should be a form to be evaluated instead of the original.
500fcedc
SM
124DECL is a declaration, optional, of the form (declare DECLS...) where
125DECLS is a list of elements of the form (PROP . VALUES). These are
1053a871
SM
126interpreted according to `macro-declarations-alist'.
127The return value is undefined."
61b108cc
SM
128 (if (stringp docstring) nil
129 (if decl (setq body (cons decl body)))
130 (setq decl docstring)
131 (setq docstring nil))
132 (if (or (null decl) (eq 'declare (car-safe decl))) nil
133 (setq body (cons decl body))
134 (setq decl nil))
135 (if (null body) (setq body '(nil)))
136 (if docstring (setq body (cons docstring body)))
137 ;; Can't use backquote because it's not defined yet!
138 (let* ((fun (list 'function (cons 'lambda (cons arglist body))))
139 (def (list 'defalias
140 (list 'quote name)
500fcedc
SM
141 (list 'cons ''macro fun)))
142 (declarations
143 (mapcar
144 #'(lambda (x)
145 (let ((f (cdr (assq (car x) macro-declarations-alist))))
d9857e53 146 (if f (apply (car f) name arglist (cdr x))
500fcedc
SM
147 (message "Warning: Unknown macro property %S in %S"
148 (car x) name))))
149 (cdr decl))))
150 (if declarations
151 (cons 'prog1 (cons def declarations))
61b108cc
SM
152 def)))))
153
154;; Now that we defined defmacro we can use it!
155(defmacro defun (name arglist &optional docstring &rest body)
156 "Define NAME as a function.
157The definition is (lambda ARGLIST [DOCSTRING] BODY...).
500fcedc
SM
158See also the function `interactive'.
159DECL is a declaration, optional, of the form (declare DECLS...) where
160DECLS is a list of elements of the form (PROP . VALUES). These are
161interpreted according to `defun-declarations-alist'.
1053a871 162The return value is undefined.
500fcedc
SM
163
164\(fn NAME ARGLIST &optional DOCSTRING DECL &rest BODY)"
165 ;; We can't just have `decl' as an &optional argument, because we need
166 ;; to distinguish
167 ;; (defun foo (arg) (toto) nil)
168 ;; from
169 ;; (defun foo (arg) (toto)).
61b108cc 170 (declare (doc-string 3))
500fcedc
SM
171 (let ((decls (cond
172 ((eq (car-safe docstring) 'declare)
173 (prog1 (cdr docstring) (setq docstring nil)))
174 ((eq (car-safe (car body)) 'declare)
175 (prog1 (cdr (car body)) (setq body (cdr body)))))))
176 (if docstring (setq body (cons docstring body))
177 (if (null body) (setq body '(nil))))
178 (let ((declarations
179 (mapcar
180 #'(lambda (x)
181 (let ((f (cdr (assq (car x) defun-declarations-alist))))
182 (cond
d9857e53 183 (f (apply (car f) name arglist (cdr x)))
500fcedc
SM
184 ;; Yuck!!
185 ((and (featurep 'cl)
186 (memq (car x) ;C.f. cl-do-proclaim.
187 '(special inline notinline optimize warn)))
daac280a
SM
188 (push (list 'declare x)
189 (if (stringp docstring) (cdr body) body))
500fcedc 190 nil)
daac280a 191 (t (message "Warning: Unknown defun property `%S' in %S"
500fcedc
SM
192 (car x) name)))))
193 decls))
194 (def (list 'defalias
195 (list 'quote name)
196 (list 'function
197 (cons 'lambda
198 (cons arglist body))))))
199 (if declarations
200 (cons 'prog1 (cons def declarations))
201 def))))
623374a5 202\f
5e046f6d
JB
203;; Redefined in byte-optimize.el.
204;; This is not documented--it's not clear that we should promote it.
205(fset 'inline 'progn)
5e046f6d 206
5e046f6d
JB
207;;; Interface to inline functions.
208
209;; (defmacro proclaim-inline (&rest fns)
210;; "Cause the named functions to be open-coded when called from compiled code.
211;; They will only be compiled open-coded when byte-compile-optimize is true."
212;; (cons 'eval-and-compile
4f91a816 213;; (mapcar (lambda (x)
5e046f6d
JB
214;; (or (memq (get x 'byte-optimizer)
215;; '(nil byte-compile-inline-expand))
216;; (error
217;; "%s already has a byte-optimizer, can't make it inline"
218;; x))
219;; (list 'put (list 'quote x)
220;; ''byte-optimizer ''byte-compile-inline-expand))
221;; fns)))
222
223;; (defmacro proclaim-notinline (&rest fns)
224;; "Cause the named functions to no longer be open-coded."
225;; (cons 'eval-and-compile
4f91a816 226;; (mapcar (lambda (x)
5e046f6d
JB
227;; (if (eq (get x 'byte-optimizer) 'byte-compile-inline-expand)
228;; (put x 'byte-optimizer nil))
229;; (list 'if (list 'eq (list 'get (list 'quote x) ''byte-optimizer)
230;; ''byte-compile-inline-expand)
231;; (list 'put x ''byte-optimizer nil)))
232;; fns)))
233
5e046f6d 234(defmacro defsubst (name arglist &rest body)
d18a0d24
CY
235 "Define an inline function. The syntax is just like that of `defun'.
236\(fn NAME ARGLIST &optional DOCSTRING DECL &rest BODY)"
b581bb5c 237 (declare (debug defun) (doc-string 3))
5e046f6d
JB
238 (or (memq (get name 'byte-optimizer)
239 '(nil byte-compile-inline-expand))
240 (error "`%s' is a primitive" name))
66599b54
SM
241 `(prog1
242 (defun ,name ,arglist ,@body)
243 (eval-and-compile
244 (put ',name 'byte-optimizer 'byte-compile-inline-expand))))
5e046f6d 245
ced10a4c
SM
246(defvar advertised-signature-table (make-hash-table :test 'eq :weakness 'key))
247
500fcedc 248(defun set-advertised-calling-convention (function signature _when)
ced10a4c
SM
249 "Set the advertised SIGNATURE of FUNCTION.
250This will allow the byte-compiler to warn the programmer when she uses
f3a30a50
SM
251an obsolete calling convention. WHEN specifies since when the calling
252convention was modified."
ced10a4c
SM
253 (puthash (indirect-function function) signature
254 advertised-signature-table))
255
fbb70c53 256(defun make-obsolete (obsolete-name current-name &optional when)
59f7af81
CY
257 "Make the byte-compiler warn that function OBSOLETE-NAME is obsolete.
258OBSOLETE-NAME should be a function name or macro name (a symbol).
259
fbb70c53 260The warning will say that CURRENT-NAME should be used instead.
584dcd8f
GM
261If CURRENT-NAME is a string, that is the `use instead' message
262\(it should end with a period, and not start with a capital).
2462470b 263WHEN should be a string indicating when the function
5e046f6d 264was first made obsolete, for example a date or a release number."
500fcedc
SM
265 (declare (advertised-calling-convention
266 ;; New code should always provide the `when' argument.
267 (obsolete-name current-name when) "23.1"))
5e046f6d 268 (interactive "aMake function obsolete: \nxObsoletion replacement: ")
a9de04fa
SM
269 (put obsolete-name 'byte-obsolete-info
270 ;; The second entry used to hold the `byte-compile' handler, but
271 ;; is not used any more nowadays.
2462470b 272 (purecopy (list current-name nil when)))
fbb70c53 273 obsolete-name)
5e046f6d 274
fbb70c53 275(defmacro define-obsolete-function-alias (obsolete-name current-name
0448b476 276 &optional when docstring)
fbb70c53 277 "Set OBSOLETE-NAME's function definition to CURRENT-NAME and mark it obsolete.
342ef03d
LT
278
279\(define-obsolete-function-alias 'old-fun 'new-fun \"22.1\" \"old-fun's doc.\")
280
281is equivalent to the following two lines of code:
282
283\(defalias 'old-fun 'new-fun \"old-fun's doc.\")
284\(make-obsolete 'old-fun 'new-fun \"22.1\")
285
286See the docstrings of `defalias' and `make-obsolete' for more details."
500fcedc
SM
287 (declare (doc-string 4)
288 (advertised-calling-convention
289 ;; New code should always provide the `when' argument.
290 (obsolete-name current-name when &optional docstring) "23.1"))
0448b476 291 `(progn
fbb70c53
JB
292 (defalias ,obsolete-name ,current-name ,docstring)
293 (make-obsolete ,obsolete-name ,current-name ,when)))
0448b476 294
2403c841 295(defun make-obsolete-variable (obsolete-name current-name &optional when access-type)
fbb70c53
JB
296 "Make the byte-compiler warn that OBSOLETE-NAME is obsolete.
297The warning will say that CURRENT-NAME should be used instead.
298If CURRENT-NAME is a string, that is the `use instead' message.
2403c841
SM
299WHEN should be a string indicating when the variable
300was first made obsolete, for example a date or a release number.
301ACCESS-TYPE if non-nil should specify the kind of access that will trigger
302 obsolescence warnings; it can be either `get' or `set'."
500fcedc
SM
303 (declare (advertised-calling-convention
304 ;; New code should always provide the `when' argument.
305 (obsolete-name current-name when &optional access-type) "23.1"))
905a9ed3 306 (put obsolete-name 'byte-obsolete-variable
2403c841 307 (purecopy (list current-name access-type when)))
fbb70c53 308 obsolete-name)
500fcedc 309
5e046f6d 310
fbb70c53 311(defmacro define-obsolete-variable-alias (obsolete-name current-name
f7f8f37a 312 &optional when docstring)
fbb70c53 313 "Make OBSOLETE-NAME a variable alias for CURRENT-NAME and mark it obsolete.
850bfd04
GM
314This uses `defvaralias' and `make-obsolete-variable' (which see).
315See the Info node `(elisp)Variable Aliases' for more details.
342ef03d 316
f8754ca2 317If CURRENT-NAME is a defcustom (more generally, any variable
865fe16f 318where OBSOLETE-NAME may be set, e.g. in an init file, before the
f8754ca2 319alias is defined), then the define-obsolete-variable-alias
850bfd04
GM
320statement should be evaluated before the defcustom, if user
321customizations are to be respected. The simplest way to achieve
322this is to place the alias statement before the defcustom (this
323is not necessary for aliases that are autoloaded, or in files
324dumped with Emacs). This is so that any user customizations are
325applied before the defcustom tries to initialize the
326variable (this is due to the way `defvaralias' works).
327
328For the benefit of `custom-set-variables', if OBSOLETE-NAME has
329any of the following properties, they are copied to
330CURRENT-NAME, if it does not already have them:
331'saved-value, 'saved-variable-comment."
500fcedc
SM
332 (declare (doc-string 4)
333 (advertised-calling-convention
334 ;; New code should always provide the `when' argument.
335 (obsolete-name current-name when &optional docstring) "23.1"))
f7f8f37a 336 `(progn
fbb70c53 337 (defvaralias ,obsolete-name ,current-name ,docstring)
850bfd04 338 ;; See Bug#4706.
6e39d3b2
SM
339 (dolist (prop '(saved-value saved-variable-comment))
340 (and (get ,obsolete-name prop)
341 (null (get ,current-name prop))
342 (put ,current-name prop (get ,obsolete-name prop))))
79e74246 343 (make-obsolete-variable ,obsolete-name ,current-name ,when)))
f7f8f37a 344
95ed0f11
GM
345;; FIXME This is only defined in this file because the variable- and
346;; function- versions are too. Unlike those two, this one is not used
347;; by the byte-compiler (would be nice if it could warn about obsolete
348;; faces, but it doesn't really do anything special with faces).
349;; It only really affects M-x describe-face output.
ced10a4c 350(defmacro define-obsolete-face-alias (obsolete-face current-face when)
95ed0f11 351 "Make OBSOLETE-FACE a face alias for CURRENT-FACE and mark it obsolete.
73fe714a
GM
352The string WHEN gives the Emacs version where OBSOLETE-FACE became
353obsolete."
95ed0f11
GM
354 `(progn
355 (put ,obsolete-face 'face-alias ,current-face)
356 ;; Used by M-x describe-face.
1e8780b1 357 (put ,obsolete-face 'obsolete-face (or (purecopy ,when) t))))
95ed0f11 358
5e046f6d
JB
359(defmacro dont-compile (&rest body)
360 "Like `progn', but the body always runs interpreted (not compiled).
361If you think you need this, you're probably making a mistake somewhere."
623374a5 362 (declare (debug t) (indent 0))
5e046f6d
JB
363 (list 'eval (list 'quote (if (cdr body) (cons 'progn body) (car body)))))
364
365\f
79e74246
SM
366;; interface to evaluating things at compile time and/or load time
367;; these macro must come after any uses of them in this file, as their
368;; definition in the file overrides the magic definitions on the
369;; byte-compile-macro-environment.
5e046f6d 370
5e046f6d 371(defmacro eval-when-compile (&rest body)
8cd567b8
RS
372 "Like `progn', but evaluates the body at compile time if you're compiling.
373Thus, the result of the body appears to the compiler as a quoted constant.
374In interpreted code, this is entirely equivalent to `progn'."
623374a5 375 (declare (debug t) (indent 0))
5e046f6d
JB
376 ;; Not necessary because we have it in b-c-initial-macro-environment
377 ;; (list 'quote (eval (cons 'progn body)))
378 (cons 'progn body))
379
5e046f6d
JB
380(defmacro eval-and-compile (&rest body)
381 "Like `progn', but evaluates the body at compile time and at load time."
623374a5 382 (declare (debug t) (indent 0))
5e046f6d
JB
383 ;; Remember, it's magic.
384 (cons 'progn body))
385
3fdfb09c 386(put 'with-no-warnings 'lisp-indent-function 0)
ae122ad2 387(defun with-no-warnings (&rest body)
5e046f6d
JB
388 "Like `progn', but prevents compiler warnings in the body."
389 ;; The implementation for the interpreter is basically trivial.
ae122ad2 390 (car (last body)))
5e046f6d
JB
391
392\f
79e74246
SM
393;; I nuked this because it's not a good idea for users to think of using it.
394;; These options are a matter of installation preference, and have nothing to
395;; with particular source files; it's a mistake to suggest to users
396;; they should associate these with particular source files.
397;; There is hardly any reason to change these parameters, anyway.
398;; --rms.
5e046f6d 399
3fdfb09c 400;; (put 'byte-compiler-options 'lisp-indent-function 0)
5e046f6d
JB
401;; (defmacro byte-compiler-options (&rest args)
402;; "Set some compilation-parameters for this file. This will affect only the
403;; file in which it appears; this does nothing when evaluated, and when loaded
404;; from a .el file.
405;;
406;; Each argument to this macro must be a list of a key and a value.
407;;
408;; Keys: Values: Corresponding variable:
409;;
410;; verbose t, nil byte-compile-verbose
411;; optimize t, nil, source, byte byte-compile-optimize
412;; warnings list of warnings byte-compile-warnings
9b9a4122 413;; Valid elements: (callargs redefine free-vars unresolved)
5e046f6d
JB
414;; file-format emacs18, emacs19 byte-compile-compatibility
415;;
416;; For example, this might appear at the top of a source file:
417;;
418;; (byte-compiler-options
419;; (optimize t)
420;; (warnings (- free-vars)) ; Don't warn about free variables
421;; (file-format emacs19))"
422;; nil)
423
500fcedc 424(make-obsolete-variable 'macro-declaration-function
2a1e2476 425 'macro-declarations-alist "24.3")
500fcedc 426(make-obsolete 'macro-declaration-function
2a1e2476 427 'macro-declarations-alist "24.3")
500fcedc 428
5e046f6d 429;;; byte-run.el ends here