(elp-report-limit): Change prompt string.
[emacs.git] / lisp / emacs-lisp / elp.el
blobb694c79707c69aaabf3314f2d441af1bd6a4cb7a
1 ;;; elp.el --- Emacs Lisp Profiler
3 ;; Copyright (C) 1994, 1995, 1997 Free Software Foundation, Inc.
5 ;; Author: 1994-1997 Barry A. Warsaw
6 ;; Maintainer: tools-help@python.org
7 ;; Created: 26-Feb-1994
8 ;; Version: 2.40
9 ;; Last Modified: 1997/04/21 15:48:26
10 ;; Keywords: debugging lisp tools
12 ;; This file is part of GNU Emacs.
14 ;; GNU Emacs is free software; you can redistribute it and/or modify
15 ;; it under the terms of the GNU General Public License as published by
16 ;; the Free Software Foundation; either version 2, or (at your option)
17 ;; any later version.
19 ;; GNU Emacs is distributed in the hope that it will be useful,
20 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
21 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
22 ;; GNU General Public License for more details.
24 ;; You should have received a copy of the GNU General Public License
25 ;; along with GNU Emacs; see the file COPYING. If not, write to the
26 ;; Free Software Foundation, Inc., 59 Temple Place - Suite 330,
27 ;; Boston, MA 02111-1307, USA.
29 ;;; Commentary:
31 ;; If you want to profile a bunch of functions, set elp-function-list
32 ;; to the list of symbols, then do a M-x elp-instrument-list. This
33 ;; hacks those functions so that profiling information is recorded
34 ;; whenever they are called. To print out the current results, use
35 ;; M-x elp-results. If you want output to go to standard-output
36 ;; instead of a separate buffer, setq elp-use-standard-output to
37 ;; non-nil. With elp-reset-after-results set to non-nil, profiling
38 ;; information will be reset whenever the results are displayed. You
39 ;; can also reset all profiling info at any time with M-x
40 ;; elp-reset-all.
42 ;; You can also instrument all functions in a package, provided that
43 ;; the package follows the GNU coding standard of a common textural
44 ;; prefix. Use M-x elp-instrument-package for this.
46 ;; If you want to sort the results, set elp-sort-by-function to some
47 ;; predicate function. The three most obvious choices are predefined:
48 ;; elp-sort-by-call-count, elp-sort-by-average-time, and
49 ;; elp-sort-by-total-time. Also, you can prune from the output, all
50 ;; functions that have been called fewer than a given number of times
51 ;; by setting elp-report-limit.
53 ;; Elp can instrument byte-compiled functions just as easily as
54 ;; interpreted functions, but it cannot instrument macros. However,
55 ;; when you redefine a function (e.g. with eval-defun), you'll need to
56 ;; re-instrument it with M-x elp-instrument-function. This will also
57 ;; reset profiling information for that function. Elp can handle
58 ;; interactive functions (i.e. commands), but of course any time spent
59 ;; idling for user prompts will show up in the timing results.
61 ;; You can also designate a `master' function. Profiling times will
62 ;; be gathered for instrumented functions only during execution of
63 ;; this master function. Thus, if you have some defuns like:
65 ;; (defun foo () (do-something-time-intensive))
66 ;; (defun bar () (foo))
67 ;; (defun baz () (bar) (foo))
69 ;; and you want to find out the amount of time spent in bar and foo,
70 ;; but only during execution of bar, make bar the master. The call of
71 ;; foo from baz will not add to foo's total timing sums. Use M-x
72 ;; elp-set-master and M-x elp-unset-master to utilize this feature.
73 ;; Only one master function can be set at a time.
75 ;; You can restore any function's original function definition with
76 ;; elp-restore-function. The other instrument, restore, and reset
77 ;; functions are provided for symmetry.
79 ;; Here is a list of variable you can use to customize elp:
80 ;; elp-function-list
81 ;; elp-reset-after-results
82 ;; elp-sort-by-function
83 ;; elp-report-limit
85 ;; Here is a list of the interactive commands you can use:
86 ;; elp-instrument-function
87 ;; elp-restore-function
88 ;; elp-instrument-list
89 ;; elp-restore-list
90 ;; elp-instrument-package
91 ;; elp-restore-all
92 ;; elp-reset-function
93 ;; elp-reset-list
94 ;; elp-reset-all
95 ;; elp-set-master
96 ;; elp-unset-master
97 ;; elp-results
98 ;; elp-submit-bug-report
100 ;; Note that there are plenty of factors that could make the times
101 ;; reported unreliable, including the accuracy and granularity of your
102 ;; system clock, and the overhead spent in lisp calculating and
103 ;; recording the intervals. I figure the latter is pretty constant,
104 ;; so while the times may not be entirely accurate, I think they'll
105 ;; give you a good feel for the relative amount of work spent in the
106 ;; various lisp routines you are profiling. Note further that times
107 ;; are calculated using wall-clock time, so other system load will
108 ;; affect accuracy too.
110 ;;; Background:
112 ;; This program was inspired by the only two existing Emacs Lisp
113 ;; profilers that I'm aware of, Boaz Ben-Zvi's profile.el, and Root
114 ;; Boy Jim's profiler.el. Both were written for Emacs 18 and both were
115 ;; pretty good first shots at profiling, but I found that they didn't
116 ;; provide the functionality or interface that I wanted, so I wrote
117 ;; this. I've tested elp in XEmacs 19 and Emacs 19. There's no point
118 ;; in even trying to make this work with Emacs 18.
120 ;; Unlike previous profilers, elp uses Emacs 19's built-in function
121 ;; current-time to return interval times. This obviates the need for
122 ;; both an external C program and Emacs processes to communicate with
123 ;; such a program, and thus simplifies the package as a whole.
125 ;; TBD:
126 ;; Make this act like a real profiler, so that it records time spent
127 ;; in all branches of execution.
129 ;;; Code:
132 ;; start of user configuration variables
133 ;; vvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvv
135 (defgroup elp nil
136 "Emacs Lisp Profiler"
137 :group 'lisp)
139 (defcustom elp-function-list nil
140 "*List of functions to profile.
141 Used by the command `elp-instrument-list'."
142 :type '(repeat function)
143 :group 'elp)
145 (defcustom elp-reset-after-results t
146 "*Non-nil means reset all profiling info after results are displayed.
147 Results are displayed with the `elp-results' command."
148 :type 'boolean
149 :group 'elp)
151 (defcustom elp-sort-by-function 'elp-sort-by-total-time
152 "*Non-nil specifies elp results sorting function.
153 These functions are currently available:
155 elp-sort-by-call-count -- sort by the highest call count
156 elp-sort-by-total-time -- sort by the highest total time
157 elp-sort-by-average-time -- sort by the highest average times
159 You can write you're own sort function. It should adhere to the
160 interface specified by the PRED argument for the `sort' defun. Each
161 \"element of LIST\" is really a 4 element vector where element 0 is
162 the call count, element 1 is the total time spent in the function,
163 element 2 is the average time spent in the function, and element 3 is
164 the symbol's name string."
165 :type 'function
166 :group 'elp)
168 (defcustom elp-report-limit 1
169 "*Prevents some functions from being displayed in the results buffer.
170 If a number, no function that has been called fewer than that number
171 of times will be displayed in the output buffer. If nil, all
172 functions will be displayed."
173 :type '(choice integer
174 (const :tag "Show All" nil))
175 :group 'elp)
177 (defcustom elp-use-standard-output nil
178 "*Non-nil says to output to `standard-output' instead of a buffer."
179 :type 'boolean
180 :group 'elp)
182 (defcustom elp-recycle-buffers-p t
183 "*Nil says to not recycle the `elp-results-buffer'.
184 In other words, a new unique buffer is create every time you run
185 \\[elp-results]."
186 :type 'boolean
187 :group 'elp)
190 ;; ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
191 ;; end of user configuration variables
194 (defconst elp-version "2.40"
195 "ELP version number.")
197 (defconst elp-help-address "tools-help@python.org"
198 "Address accepting submissions of bug reports and questions.")
200 (defvar elp-results-buffer "*ELP Profiling Results*"
201 "Buffer name for outputting profiling results.")
203 (defconst elp-timer-info-property 'elp-info
204 "ELP information property name.")
206 (defvar elp-all-instrumented-list nil
207 "List of all functions currently being instrumented.")
209 (defvar elp-record-p t
210 "Controls whether functions should record times or not.
211 This variable is set by the master function.")
213 (defvar elp-master nil
214 "Master function symbol.")
217 ;;;###autoload
218 (defun elp-instrument-function (funsym)
219 "Instrument FUNSYM for profiling.
220 FUNSYM must be a symbol of a defined function."
221 (interactive "aFunction to instrument: ")
222 ;; restore the function. this is necessary to avoid infinite
223 ;; recursion of already instrumented functions (i.e. elp-wrapper
224 ;; calling elp-wrapper ad infinitum). it is better to simply
225 ;; restore the function than to throw an error. this will work
226 ;; properly in the face of eval-defun because if the function was
227 ;; redefined, only the timer info will be nil'd out since
228 ;; elp-restore-function is smart enough not to trash the new
229 ;; definition.
230 (elp-restore-function funsym)
231 (let* ((funguts (symbol-function funsym))
232 (infovec (vector 0 0 funguts))
233 (newguts '(lambda (&rest args))))
234 ;; we cannot profile macros
235 (and (eq (car-safe funguts) 'macro)
236 (error "ELP cannot profile macro: %s" funsym))
237 ;; TBD: at some point it might be better to load the autoloaded
238 ;; function instead of throwing an error. if we do this, then we
239 ;; probably want elp-instrument-package to be updated with the
240 ;; newly loaded list of functions. i'm not sure it's smart to do
241 ;; the autoload here, since that could have side effects, and
242 ;; elp-instrument-function is similar (in my mind) to defun-ish
243 ;; type functionality (i.e. it shouldn't execute the function).
244 (and (eq (car-safe funguts) 'autoload)
245 (error "ELP cannot profile autoloaded function: %s" funsym))
246 ;; put rest of newguts together
247 (if (commandp funsym)
248 (setq newguts (append newguts '((interactive)))))
249 (setq newguts (append newguts (list
250 (list 'elp-wrapper
251 (list 'quote funsym)
252 (list 'and
253 '(interactive-p)
254 (not (not (commandp funsym))))
255 'args))))
256 ;; to record profiling times, we set the symbol's function
257 ;; definition so that it runs the elp-wrapper function with the
258 ;; function symbol as an argument. We place the old function
259 ;; definition on the info vector.
261 ;; The info vector data structure is a 3 element vector. The 0th
262 ;; element is the call-count, i.e. the total number of times this
263 ;; function has been entered. This value is bumped up on entry to
264 ;; the function so that non-local exists are still recorded. TBD:
265 ;; I haven't tested non-local exits at all, so no guarantees.
267 ;; The 1st element is the total amount of time in usecs that have
268 ;; been spent inside this function. This number is added to on
269 ;; function exit.
271 ;; The 2nd element is the old function definition list. This gets
272 ;; funcall'd in between start/end time retrievals. I believe that
273 ;; this lets us profile even byte-compiled functions.
275 ;; put the info vector on the property list
276 (put funsym elp-timer-info-property infovec)
278 ;; set the symbol's new profiling function definition to run
279 ;; elp-wrapper
280 (fset funsym newguts)
282 ;; add this function to the instrumentation list
283 (or (memq funsym elp-all-instrumented-list)
284 (setq elp-all-instrumented-list
285 (cons funsym elp-all-instrumented-list)))
288 ;;;###autoload
289 (defun elp-restore-function (funsym)
290 "Restore an instrumented function to its original definition.
291 Argument FUNSYM is the symbol of a defined function."
292 (interactive "aFunction to restore: ")
293 (let ((info (get funsym elp-timer-info-property)))
294 ;; delete the function from the all instrumented list
295 (setq elp-all-instrumented-list
296 (delq funsym elp-all-instrumented-list))
298 ;; if the function was the master, reset the master
299 (if (eq funsym elp-master)
300 (setq elp-master nil
301 elp-record-p t))
303 ;; zap the properties
304 (put funsym elp-timer-info-property nil)
306 ;; restore the original function definition, but if the function
307 ;; wasn't instrumented do nothing. we do this after the above
308 ;; because its possible the function got un-instrumented due to
309 ;; circumstances beyond our control. Also, check to make sure
310 ;; that the current function symbol points to elp-wrapper. If
311 ;; not, then the user probably did an eval-defun, or loaded a
312 ;; byte-compiled version, while the function was instrumented and
313 ;; we don't want to destroy the new definition. can it ever be
314 ;; the case that a lisp function can be compiled instrumented?
315 (and info
316 (functionp funsym)
317 (not (compiled-function-p (symbol-function funsym)))
318 (assq 'elp-wrapper (symbol-function funsym))
319 (fset funsym (aref info 2)))))
321 ;;;###autoload
322 (defun elp-instrument-list (&optional list)
323 "Instrument for profiling, all functions in `elp-function-list'.
324 Use optional LIST if provided instead."
325 (interactive "PList of functions to instrument: ")
326 (let ((list (or list elp-function-list)))
327 (mapcar 'elp-instrument-function list)))
329 ;;;###autoload
330 (defun elp-instrument-package (prefix)
331 "Instrument for profiling, all functions which start with PREFIX.
332 For example, to instrument all ELP functions, do the following:
334 \\[elp-instrument-package] RET elp- RET"
335 (interactive "sPrefix of package to instrument: ")
336 (elp-instrument-list
337 (mapcar
338 'intern
339 (all-completions
340 prefix obarray
341 (function
342 (lambda (sym)
343 (and (fboundp sym)
344 (not (memq (car-safe (symbol-function sym)) '(autoload macro))))
346 ))))
348 (defun elp-restore-list (&optional list)
349 "Restore the original definitions for all functions in `elp-function-list'.
350 Use optional LIST if provided instead."
351 (interactive "PList of functions to restore: ")
352 (let ((list (or list elp-function-list)))
353 (mapcar 'elp-restore-function list)))
355 (defun elp-restore-all ()
356 "Restores the original definitions of all functions being profiled."
357 (interactive)
358 (elp-restore-list elp-all-instrumented-list))
361 (defun elp-reset-function (funsym)
362 "Reset the profiling information for FUNSYM."
363 (interactive "aFunction to reset: ")
364 (let ((info (get funsym elp-timer-info-property)))
365 (or info
366 (error "%s is not instrumented for profiling." funsym))
367 (aset info 0 0) ;reset call counter
368 (aset info 1 0.0) ;reset total time
369 ;; don't muck with aref 2 as that is the old symbol definition
372 (defun elp-reset-list (&optional list)
373 "Reset the profiling information for all functions in `elp-function-list'.
374 Use optional LIST if provided instead."
375 (interactive "PList of functions to reset: ")
376 (let ((list (or list elp-function-list)))
377 (mapcar 'elp-reset-function list)))
379 (defun elp-reset-all ()
380 "Reset the profiling information for all functions being profiled."
381 (interactive)
382 (elp-reset-list elp-all-instrumented-list))
384 (defun elp-set-master (funsym)
385 "Set the master function for profiling."
386 (interactive "aMaster function: ")
387 ;; when there's a master function, recording is turned off by
388 ;; default
389 (setq elp-master funsym
390 elp-record-p nil)
391 ;; make sure master function is instrumented
392 (or (memq funsym elp-all-instrumented-list)
393 (elp-instrument-function funsym)))
395 (defun elp-unset-master ()
396 "Unsets the master function."
397 (interactive)
398 ;; when there's no master function, recording is turned on by default.
399 (setq elp-master nil
400 elp-record-p t))
403 (defsubst elp-elapsed-time (start end)
404 (+ (* (- (car end) (car start)) 65536.0)
405 (- (car (cdr end)) (car (cdr start)))
406 (/ (- (car (cdr (cdr end))) (car (cdr (cdr start)))) 1000000.0)))
408 (defun elp-wrapper (funsym interactive-p args)
409 "This function has been instrumented for profiling by the ELP.
410 ELP is the Emacs Lisp Profiler. To restore the function to its
411 original definition, use \\[elp-restore-function] or \\[elp-restore-all]."
412 ;; turn on recording if this is the master function
413 (if (and elp-master
414 (eq funsym elp-master))
415 (setq elp-record-p t))
416 ;; get info vector and original function symbol
417 (let* ((info (get funsym elp-timer-info-property))
418 (func (aref info 2))
419 result)
420 (or func
421 (error "%s is not instrumented for profiling." funsym))
422 (if (not elp-record-p)
423 ;; when not recording, just call the original function symbol
424 ;; and return the results.
425 (setq result
426 (if interactive-p
427 (call-interactively func)
428 (apply func args)))
429 ;; we are recording times
430 (let (enter-time exit-time)
431 ;; increment the call-counter
432 (aset info 0 (1+ (aref info 0)))
433 ;; now call the old symbol function, checking to see if it
434 ;; should be called interactively. make sure we return the
435 ;; correct value
436 (if interactive-p
437 (setq enter-time (current-time)
438 result (call-interactively func)
439 exit-time (current-time))
440 (setq enter-time (current-time)
441 result (apply func args)
442 exit-time (current-time)))
443 ;; calculate total time in function
444 (aset info 1 (+ (aref info 1) (elp-elapsed-time enter-time exit-time)))
446 ;; turn off recording if this is the master function
447 (if (and elp-master
448 (eq funsym elp-master))
449 (setq elp-record-p nil))
450 result))
453 ;; shut the byte-compiler up
454 (defvar elp-field-len nil)
455 (defvar elp-cc-len nil)
456 (defvar elp-at-len nil)
457 (defvar elp-et-len nil)
459 (defun elp-sort-by-call-count (vec1 vec2)
460 ;; sort by highest call count. See `sort'.
461 (>= (aref vec1 0) (aref vec2 0)))
463 (defun elp-sort-by-total-time (vec1 vec2)
464 ;; sort by highest total time spent in function. See `sort'.
465 (>= (aref vec1 1) (aref vec2 1)))
467 (defun elp-sort-by-average-time (vec1 vec2)
468 ;; sort by highest average time spent in function. See `sort'.
469 (>= (aref vec1 2) (aref vec2 2)))
471 (defsubst elp-pack-number (number width)
472 ;; pack the NUMBER string into WIDTH characters, watching out for
473 ;; very small or large numbers
474 (if (<= (length number) width)
475 number
476 ;; check for very large or small numbers
477 (if (string-match "^\\(.*\\)\\(e[+-].*\\)$" number)
478 (concat (substring
479 (substring number (match-beginning 1) (match-end 1))
481 (- width (match-end 2) (- (match-beginning 2)) 3))
482 "..."
483 (substring number (match-beginning 2) (match-end 2)))
484 (concat (substring number 0 width)))))
486 (defun elp-output-result (resultvec)
487 ;; output the RESULTVEC into the results buffer. RESULTVEC is a 4 or
488 ;; more element vector where aref 0 is the call count, aref 1 is the
489 ;; total time spent in the function, aref 2 is the average time
490 ;; spent in the function, and aref 3 is the symbol's string
491 ;; name. All other elements in the vector are ignored.
492 (let* ((cc (aref resultvec 0))
493 (tt (aref resultvec 1))
494 (at (aref resultvec 2))
495 (symname (aref resultvec 3))
496 callcnt totaltime avetime)
497 (setq callcnt (number-to-string cc)
498 totaltime (number-to-string tt)
499 avetime (number-to-string at))
500 ;; possibly prune the results
501 (if (and elp-report-limit
502 (numberp elp-report-limit)
503 (< cc elp-report-limit))
505 (insert symname)
506 (insert-char 32 (+ elp-field-len (- (length symname)) 2))
507 ;; print stuff out, formatting it nicely
508 (insert callcnt)
509 (insert-char 32 (+ elp-cc-len (- (length callcnt)) 2))
510 (let ((ttstr (elp-pack-number totaltime elp-et-len))
511 (atstr (elp-pack-number avetime elp-at-len)))
512 (insert ttstr)
513 (insert-char 32 (+ elp-et-len (- (length ttstr)) 2))
514 (insert atstr))
515 (insert "\n"))))
517 ;;;###autoload
518 (defun elp-results ()
519 "Display current profiling results.
520 If `elp-reset-after-results' is non-nil, then current profiling
521 information for all instrumented functions are reset after results are
522 displayed."
523 (interactive)
524 (let ((curbuf (current-buffer))
525 (resultsbuf (if elp-recycle-buffers-p
526 (get-buffer-create elp-results-buffer)
527 (generate-new-buffer elp-results-buffer))))
528 (set-buffer resultsbuf)
529 (erase-buffer)
530 (beginning-of-buffer)
531 ;; get the length of the longest function name being profiled
532 (let* ((longest 0)
533 (title "Function Name")
534 (titlelen (length title))
535 (elp-field-len titlelen)
536 (cc-header "Call Count")
537 (elp-cc-len (length cc-header))
538 (et-header "Elapsed Time")
539 (elp-et-len (length et-header))
540 (at-header "Average Time")
541 (elp-at-len (length at-header))
542 (resvec
543 (mapcar
544 (function
545 (lambda (funsym)
546 (let* ((info (get funsym elp-timer-info-property))
547 (symname (format "%s" funsym))
548 (cc (aref info 0))
549 (tt (aref info 1)))
550 (if (not info)
551 (insert "No profiling information found for: "
552 symname)
553 (setq longest (max longest (length symname)))
554 (vector cc tt (if (zerop cc)
555 0.0 ;avoid arithmetic div-by-zero errors
556 (/ (float tt) (float cc)))
557 symname)))))
558 elp-all-instrumented-list))
559 ) ; end let*
560 (insert title)
561 (if (> longest titlelen)
562 (progn
563 (insert-char 32 (- longest titlelen))
564 (setq elp-field-len longest)))
565 (insert " " cc-header " " et-header " " at-header "\n")
566 (insert-char ?= elp-field-len)
567 (insert " ")
568 (insert-char ?= elp-cc-len)
569 (insert " ")
570 (insert-char ?= elp-et-len)
571 (insert " ")
572 (insert-char ?= elp-at-len)
573 (insert "\n")
574 ;; if sorting is enabled, then sort the results list. in either
575 ;; case, call elp-output-result to output the result in the
576 ;; buffer
577 (if elp-sort-by-function
578 (setq resvec (sort resvec elp-sort-by-function)))
579 (mapcar 'elp-output-result resvec))
580 ;; now pop up results buffer
581 (set-buffer curbuf)
582 (pop-to-buffer resultsbuf)
583 ;; copy results to standard-output?
584 (if (or elp-use-standard-output noninteractive)
585 (princ (buffer-substring (point-min) (point-max))))
586 ;; reset profiling info if desired
587 (and elp-reset-after-results
588 (elp-reset-all))))
591 (eval-when-compile
592 (require 'reporter))
594 ;;;###autoload
595 (defun elp-submit-bug-report ()
596 "Submit via mail, a bug report on elp."
597 (interactive)
598 (and
599 (y-or-n-p "Do you want to submit a report on elp? ")
600 (require 'reporter)
601 (reporter-submit-bug-report
602 elp-help-address (concat "elp " elp-version)
603 '(elp-report-limit
604 elp-reset-after-results
605 elp-sort-by-function))))
607 (provide 'elp)
609 ;; elp.el ends here