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