Mercurial > emacs
changeset 76909:fba5b366a207
(Inline Functions): Describe more disadvantages of defsubst, and make advice
against it stronger.
author | Eli Zaretskii <eliz@gnu.org> |
---|---|
date | Tue, 03 Apr 2007 09:50:08 +0000 |
parents | 714d51db2c25 |
children | e7efa8bb36c1 |
files | lispref/functions.texi |
diffstat | 1 files changed, 10 insertions(+), 5 deletions(-) [+] |
line wrap: on
line diff
--- a/lispref/functions.texi Tue Apr 03 09:05:37 2007 +0000 +++ b/lispref/functions.texi Tue Apr 03 09:50:08 2007 +0000 @@ -1193,17 +1193,22 @@ the function's definition is open-coded into the caller. Making a function inline makes explicit calls run faster. But it also -has disadvantages. For one thing, it reduces flexibility; if you change -the definition of the function, calls already inlined still use the old -definition until you recompile them. Since the flexibility of -redefining functions is an important feature of Emacs, you should not -make a function inline unless its speed is really crucial. +has disadvantages. For one thing, it reduces flexibility; if you +change the definition of the function, calls already inlined still use +the old definition until you recompile them. Another disadvantage is that making a large function inline can increase the size of compiled code both in files and in memory. Since the speed advantage of inline functions is greatest for small functions, you generally should not make large functions inline. +Also, inline functions do not behave well with respect to debugging, +tracing, and advising (@pxref{Advising Functions}). Since ease of +debugging and the flexibility of redefining functions are important +features of Emacs, you should not make a function inline, even if it's +small, unless its speed is really crucial, and you've timed the code +to verify that using @code{defun} actually has performance problems. + It's possible to define a macro to expand into the same code that an inline function would execute. (@xref{Macros}.) But the macro would be limited to direct use in expressions---a macro cannot be called with