* emacs-lisp/elp.el (elp-instrument-list): Fix 2nd arg of `signal'.
[bpt/emacs.git] / lisp / emacs-lisp / elp.el
1 ;;; elp.el --- Emacs Lisp Profiler
2
3 ;; Copyright (C) 1994, 1995, 1997, 1998, 2001, 2002, 2003, 2004,
4 ;; 2005, 2006, 2007, 2008 Free Software Foundation, Inc.
5
6 ;; Author: Barry A. Warsaw
7 ;; Maintainer: FSF
8 ;; Created: 26-Feb-1994
9 ;; Keywords: debugging lisp tools
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 ;; If you want to profile a bunch of functions, set elp-function-list
29 ;; to the list of symbols, then do a M-x elp-instrument-list. This
30 ;; hacks those functions so that profiling information is recorded
31 ;; whenever they are called. To print out the current results, use
32 ;; M-x elp-results. If you want output to go to standard-output
33 ;; instead of a separate buffer, setq elp-use-standard-output to
34 ;; non-nil. With elp-reset-after-results set to non-nil, profiling
35 ;; information will be reset whenever the results are displayed. You
36 ;; can also reset all profiling info at any time with M-x
37 ;; elp-reset-all.
38 ;;
39 ;; You can also instrument all functions in a package, provided that
40 ;; the package follows the GNU coding standard of a common textual
41 ;; prefix. Use M-x elp-instrument-package for this.
42 ;;
43 ;; If you want to sort the results, set elp-sort-by-function to some
44 ;; predicate function. The three most obvious choices are predefined:
45 ;; elp-sort-by-call-count, elp-sort-by-average-time, and
46 ;; elp-sort-by-total-time. Also, you can prune from the output, all
47 ;; functions that have been called fewer than a given number of times
48 ;; by setting elp-report-limit.
49 ;;
50 ;; Elp can instrument byte-compiled functions just as easily as
51 ;; interpreted functions, but it cannot instrument macros. However,
52 ;; when you redefine a function (e.g. with eval-defun), you'll need to
53 ;; re-instrument it with M-x elp-instrument-function. This will also
54 ;; reset profiling information for that function. Elp can handle
55 ;; interactive functions (i.e. commands), but of course any time spent
56 ;; idling for user prompts will show up in the timing results.
57 ;;
58 ;; You can also designate a `master' function. Profiling times will
59 ;; be gathered for instrumented functions only during execution of
60 ;; this master function. Thus, if you have some defuns like:
61 ;;
62 ;; (defun foo () (do-something-time-intensive))
63 ;; (defun bar () (foo))
64 ;; (defun baz () (bar) (foo))
65 ;;
66 ;; and you want to find out the amount of time spent in bar and foo,
67 ;; but only during execution of bar, make bar the master. The call of
68 ;; foo from baz will not add to foo's total timing sums. Use M-x
69 ;; elp-set-master and M-x elp-unset-master to utilize this feature.
70 ;; Only one master function can be set at a time.
71
72 ;; You can restore any function's original function definition with
73 ;; elp-restore-function. The other instrument, restore, and reset
74 ;; functions are provided for symmetry.
75
76 ;; Here is a list of variable you can use to customize elp:
77 ;; elp-function-list
78 ;; elp-reset-after-results
79 ;; elp-sort-by-function
80 ;; elp-report-limit
81 ;;
82 ;; Here is a list of the interactive commands you can use:
83 ;; elp-instrument-function
84 ;; elp-restore-function
85 ;; elp-instrument-list
86 ;; elp-restore-list
87 ;; elp-instrument-package
88 ;; elp-restore-all
89 ;; elp-reset-function
90 ;; elp-reset-list
91 ;; elp-reset-all
92 ;; elp-set-master
93 ;; elp-unset-master
94 ;; elp-results
95
96 ;; Note that there are plenty of factors that could make the times
97 ;; reported unreliable, including the accuracy and granularity of your
98 ;; system clock, and the overhead spent in lisp calculating and
99 ;; recording the intervals. I figure the latter is pretty constant,
100 ;; so while the times may not be entirely accurate, I think they'll
101 ;; give you a good feel for the relative amount of work spent in the
102 ;; various lisp routines you are profiling. Note further that times
103 ;; are calculated using wall-clock time, so other system load will
104 ;; affect accuracy too.
105
106 ;;; Background:
107
108 ;; This program was inspired by the only two existing Emacs Lisp
109 ;; profilers that I'm aware of, Boaz Ben-Zvi's profile.el, and Root
110 ;; Boy Jim's profiler.el. Both were written for Emacs 18 and both were
111 ;; pretty good first shots at profiling, but I found that they didn't
112 ;; provide the functionality or interface that I wanted, so I wrote
113 ;; this. I've tested elp in XEmacs 19 and Emacs 19. There's no point
114 ;; in even trying to make this work with Emacs 18.
115
116 ;; Unlike previous profilers, elp uses Emacs 19's built-in function
117 ;; current-time to return interval times. This obviates the need for
118 ;; both an external C program and Emacs processes to communicate with
119 ;; such a program, and thus simplifies the package as a whole.
120
121 ;; TBD:
122 ;; Make this act like a real profiler, so that it records time spent
123 ;; in all branches of execution.
124
125 ;;; Code:
126
127 \f
128 ;; start of user configuration variables
129 ;; vvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvv
130
131 (defgroup elp nil
132 "Emacs Lisp Profiler."
133 :group 'lisp)
134
135 (defcustom elp-function-list nil
136 "*List of functions to profile.
137 Used by the command `elp-instrument-list'."
138 :type '(repeat function)
139 :group 'elp)
140
141 (defcustom elp-reset-after-results t
142 "*Non-nil means reset all profiling info after results are displayed.
143 Results are displayed with the `elp-results' command."
144 :type 'boolean
145 :group 'elp)
146
147 (defcustom elp-sort-by-function 'elp-sort-by-total-time
148 "*Non-nil specifies ELP results sorting function.
149 These functions are currently available:
150
151 elp-sort-by-call-count -- sort by the highest call count
152 elp-sort-by-total-time -- sort by the highest total time
153 elp-sort-by-average-time -- sort by the highest average times
154
155 You can write your own sort function. It should adhere to the
156 interface specified by the PREDICATE argument for `sort'.
157 Each \"element of LIST\" is really a 4 element vector where element 0 is
158 the call count, element 1 is the total time spent in the function,
159 element 2 is the average time spent in the function, and element 3 is
160 the symbol's name string."
161 :type 'function
162 :group 'elp)
163
164 (defcustom elp-report-limit 1
165 "*Prevent some functions from being displayed in the results buffer.
166 If a number, no function that has been called fewer than that number
167 of times will be displayed in the output buffer. If nil, all
168 functions will be displayed."
169 :type '(choice integer
170 (const :tag "Show All" nil))
171 :group 'elp)
172
173 (defcustom elp-use-standard-output nil
174 "*If non-nil, output to `standard-output' instead of a buffer."
175 :type 'boolean
176 :group 'elp)
177
178 (defcustom elp-recycle-buffers-p t
179 "*If nil, don't recycle the `elp-results-buffer'.
180 In other words, a new unique buffer is create every time you run
181 \\[elp-results]."
182 :type 'boolean
183 :group 'elp)
184
185
186 ;; ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
187 ;; end of user configuration variables
188
189 \f
190 (defvar elp-results-buffer "*ELP Profiling Results*"
191 "Buffer name for outputting profiling results.")
192
193 (defconst elp-timer-info-property 'elp-info
194 "ELP information property name.")
195
196 (defvar elp-all-instrumented-list nil
197 "List of all functions currently being instrumented.")
198
199 (defvar elp-record-p t
200 "Controls whether functions should record times or not.
201 This variable is set by the master function.")
202
203 (defvar elp-master nil
204 "Master function symbol.")
205
206 (defvar elp-not-profilable
207 ;; First, the functions used inside each instrumented function:
208 '(elp-wrapper called-interactively-p
209 ;; Then the functions used by the above functions. I used
210 ;; (delq nil (mapcar (lambda (x) (and (symbolp x) (fboundp x) x))
211 ;; (aref (symbol-function 'elp-wrapper) 2)))
212 ;; to help me find this list.
213 error call-interactively apply current-time)
214 "List of functions that cannot be profiled.
215 Those functions are used internally by the profiling code and profiling
216 them would thus lead to infinite recursion.")
217
218 (defun elp-profilable-p (fun)
219 (and (symbolp fun)
220 (fboundp fun)
221 (not (or (memq fun elp-not-profilable)
222 (keymapp fun)
223 (memq (car-safe (symbol-function fun)) '(autoload macro))
224 (condition-case nil
225 (when (subrp (indirect-function fun))
226 (eq 'unevalled
227 (cdr (subr-arity (indirect-function fun)))))
228 (error nil))))))
229
230 \f
231 ;;;###autoload
232 (defun elp-instrument-function (funsym)
233 "Instrument FUNSYM for profiling.
234 FUNSYM must be a symbol of a defined function."
235 (interactive "aFunction to instrument: ")
236 ;; restore the function. this is necessary to avoid infinite
237 ;; recursion of already instrumented functions (i.e. elp-wrapper
238 ;; calling elp-wrapper ad infinitum). it is better to simply
239 ;; restore the function than to throw an error. this will work
240 ;; properly in the face of eval-defun because if the function was
241 ;; redefined, only the timer info will be nil'd out since
242 ;; elp-restore-function is smart enough not to trash the new
243 ;; definition.
244 (elp-restore-function funsym)
245 (let* ((funguts (symbol-function funsym))
246 (infovec (vector 0 0 funguts))
247 (newguts '(lambda (&rest args))))
248 ;; we cannot profile macros
249 (and (eq (car-safe funguts) 'macro)
250 (error "ELP cannot profile macro: %s" funsym))
251 ;; TBD: at some point it might be better to load the autoloaded
252 ;; function instead of throwing an error. if we do this, then we
253 ;; probably want elp-instrument-package to be updated with the
254 ;; newly loaded list of functions. i'm not sure it's smart to do
255 ;; the autoload here, since that could have side effects, and
256 ;; elp-instrument-function is similar (in my mind) to defun-ish
257 ;; type functionality (i.e. it shouldn't execute the function).
258 (and (eq (car-safe funguts) 'autoload)
259 (error "ELP cannot profile autoloaded function: %s" funsym))
260 ;; We cannot profile functions used internally during profiling.
261 (unless (elp-profilable-p funsym)
262 (error "ELP cannot profile the function: %s" funsym))
263 ;; put rest of newguts together
264 (if (commandp funsym)
265 (setq newguts (append newguts '((interactive)))))
266 (setq newguts (append newguts `((elp-wrapper
267 (quote ,funsym)
268 ,(when (commandp funsym)
269 '(called-interactively-p))
270 args))))
271 ;; to record profiling times, we set the symbol's function
272 ;; definition so that it runs the elp-wrapper function with the
273 ;; function symbol as an argument. We place the old function
274 ;; definition on the info vector.
275 ;;
276 ;; The info vector data structure is a 3 element vector. The 0th
277 ;; element is the call-count, i.e. the total number of times this
278 ;; function has been entered. This value is bumped up on entry to
279 ;; the function so that non-local exists are still recorded. TBD:
280 ;; I haven't tested non-local exits at all, so no guarantees.
281 ;;
282 ;; The 1st element is the total amount of time in usecs that have
283 ;; been spent inside this function. This number is added to on
284 ;; function exit.
285 ;;
286 ;; The 2nd element is the old function definition list. This gets
287 ;; funcall'd in between start/end time retrievals. I believe that
288 ;; this lets us profile even byte-compiled functions.
289
290 ;; put the info vector on the property list
291 (put funsym elp-timer-info-property infovec)
292
293 ;; Set the symbol's new profiling function definition to run
294 ;; elp-wrapper.
295 (let ((advice-info (get funsym 'ad-advice-info)))
296 (if advice-info
297 (progn
298 ;; If function is advised, don't let Advice change
299 ;; its definition from under us during the `fset'.
300 (put funsym 'ad-advice-info nil)
301 (fset funsym newguts)
302 (put funsym 'ad-advice-info advice-info))
303 (fset funsym newguts)))
304
305 ;; add this function to the instrumentation list
306 (unless (memq funsym elp-all-instrumented-list)
307 (push funsym elp-all-instrumented-list))))
308
309 (defun elp-restore-function (funsym)
310 "Restore an instrumented function to its original definition.
311 Argument FUNSYM is the symbol of a defined function."
312 (interactive "aFunction to restore: ")
313 (let ((info (get funsym elp-timer-info-property)))
314 ;; delete the function from the all instrumented list
315 (setq elp-all-instrumented-list
316 (delq funsym elp-all-instrumented-list))
317
318 ;; if the function was the master, reset the master
319 (if (eq funsym elp-master)
320 (setq elp-master nil
321 elp-record-p t))
322
323 ;; zap the properties
324 (put funsym elp-timer-info-property nil)
325
326 ;; restore the original function definition, but if the function
327 ;; wasn't instrumented do nothing. we do this after the above
328 ;; because its possible the function got un-instrumented due to
329 ;; circumstances beyond our control. Also, check to make sure
330 ;; that the current function symbol points to elp-wrapper. If
331 ;; not, then the user probably did an eval-defun, or loaded a
332 ;; byte-compiled version, while the function was instrumented and
333 ;; we don't want to destroy the new definition. can it ever be
334 ;; the case that a lisp function can be compiled instrumented?
335 (and info
336 (functionp funsym)
337 (not (byte-code-function-p (symbol-function funsym)))
338 (assq 'elp-wrapper (symbol-function funsym))
339 (fset funsym (aref info 2)))))
340
341 ;;;###autoload
342 (defun elp-instrument-list (&optional list)
343 "Instrument, for profiling, all functions in `elp-function-list'.
344 Use optional LIST if provided instead.
345 If called interactively, read LIST using the minibuffer."
346 (interactive "PList of functions to instrument: ")
347 (unless (listp list)
348 (signal 'wrong-type-argument (list 'listp list)))
349 (let ((list (or list elp-function-list)))
350 (mapcar 'elp-instrument-function list)))
351
352 ;;;###autoload
353 (defun elp-instrument-package (prefix)
354 "Instrument for profiling, all functions which start with PREFIX.
355 For example, to instrument all ELP functions, do the following:
356
357 \\[elp-instrument-package] RET elp- RET"
358 (interactive
359 (list (completing-read "Prefix of package to instrument: "
360 obarray 'elp-profilable-p)))
361 (if (zerop (length prefix))
362 (error "Instrumenting all Emacs functions would render Emacs unusable"))
363 (elp-instrument-list
364 (mapcar
365 'intern
366 (all-completions prefix obarray 'elp-profilable-p))))
367
368 (defun elp-restore-list (&optional list)
369 "Restore the original definitions for all functions in `elp-function-list'.
370 Use optional LIST if provided instead."
371 (interactive "PList of functions to restore: ")
372 (let ((list (or list elp-function-list)))
373 (mapcar 'elp-restore-function list)))
374
375 (defun elp-restore-all ()
376 "Restore the original definitions of all functions being profiled."
377 (interactive)
378 (elp-restore-list elp-all-instrumented-list))
379
380 \f
381 (defun elp-reset-function (funsym)
382 "Reset the profiling information for FUNSYM."
383 (interactive "aFunction to reset: ")
384 (let ((info (get funsym elp-timer-info-property)))
385 (or info
386 (error "%s is not instrumented for profiling" funsym))
387 (aset info 0 0) ;reset call counter
388 (aset info 1 0.0) ;reset total time
389 ;; don't muck with aref 2 as that is the old symbol definition
390 ))
391
392 (defun elp-reset-list (&optional list)
393 "Reset the profiling information for all functions in `elp-function-list'.
394 Use optional LIST if provided instead."
395 (interactive "PList of functions to reset: ")
396 (let ((list (or list elp-function-list)))
397 (mapcar 'elp-reset-function list)))
398
399 (defun elp-reset-all ()
400 "Reset the profiling information for all functions being profiled."
401 (interactive)
402 (elp-reset-list elp-all-instrumented-list))
403
404 (defun elp-set-master (funsym)
405 "Set the master function for profiling."
406 (interactive "aMaster function: ")
407 ;; when there's a master function, recording is turned off by
408 ;; default
409 (setq elp-master funsym
410 elp-record-p nil)
411 ;; make sure master function is instrumented
412 (or (memq funsym elp-all-instrumented-list)
413 (elp-instrument-function funsym)))
414
415 (defun elp-unset-master ()
416 "Unset the master function."
417 (interactive)
418 ;; when there's no master function, recording is turned on by default.
419 (setq elp-master nil
420 elp-record-p t))
421
422 \f
423 (defsubst elp-elapsed-time (start end)
424 (+ (* (- (car end) (car start)) 65536.0)
425 (- (car (cdr end)) (car (cdr start)))
426 (/ (- (car (cdr (cdr end))) (car (cdr (cdr start)))) 1000000.0)))
427
428 (defun elp-wrapper (funsym interactive-p args)
429 "This function has been instrumented for profiling by the ELP.
430 ELP is the Emacs Lisp Profiler. To restore the function to its
431 original definition, use \\[elp-restore-function] or \\[elp-restore-all]."
432 ;; turn on recording if this is the master function
433 (if (and elp-master
434 (eq funsym elp-master))
435 (setq elp-record-p t))
436 ;; get info vector and original function symbol
437 (let* ((info (get funsym elp-timer-info-property))
438 (func (aref info 2))
439 result)
440 (or func
441 (error "%s is not instrumented for profiling" funsym))
442 (if (not elp-record-p)
443 ;; when not recording, just call the original function symbol
444 ;; and return the results.
445 (setq result
446 (if interactive-p
447 (call-interactively func)
448 (apply func args)))
449 ;; we are recording times
450 (let (enter-time exit-time)
451 ;; increment the call-counter
452 (aset info 0 (1+ (aref info 0)))
453 ;; now call the old symbol function, checking to see if it
454 ;; should be called interactively. make sure we return the
455 ;; correct value
456 (if interactive-p
457 (setq enter-time (current-time)
458 result (call-interactively func)
459 exit-time (current-time))
460 (setq enter-time (current-time)
461 result (apply func args)
462 exit-time (current-time)))
463 ;; calculate total time in function
464 (aset info 1 (+ (aref info 1) (elp-elapsed-time enter-time exit-time)))
465 ))
466 ;; turn off recording if this is the master function
467 (if (and elp-master
468 (eq funsym elp-master))
469 (setq elp-record-p nil))
470 result))
471
472 \f
473 ;; shut the byte-compiler up
474 (defvar elp-field-len nil)
475 (defvar elp-cc-len nil)
476 (defvar elp-at-len nil)
477 (defvar elp-et-len nil)
478
479 (defun elp-sort-by-call-count (vec1 vec2)
480 ;; sort by highest call count. See `sort'.
481 (>= (aref vec1 0) (aref vec2 0)))
482
483 (defun elp-sort-by-total-time (vec1 vec2)
484 ;; sort by highest total time spent in function. See `sort'.
485 (>= (aref vec1 1) (aref vec2 1)))
486
487 (defun elp-sort-by-average-time (vec1 vec2)
488 ;; sort by highest average time spent in function. See `sort'.
489 (>= (aref vec1 2) (aref vec2 2)))
490
491 (defsubst elp-pack-number (number width)
492 ;; pack the NUMBER string into WIDTH characters, watching out for
493 ;; very small or large numbers
494 (if (<= (length number) width)
495 number
496 ;; check for very large or small numbers
497 (if (string-match "^\\(.*\\)\\(e[+-].*\\)$" number)
498 (concat (substring
499 (match-string 1 number)
500 0
501 (- width (match-end 2) (- (match-beginning 2)) 3))
502 "..."
503 (match-string 2 number))
504 (substring number 0 width))))
505
506 (defun elp-output-result (resultvec)
507 ;; output the RESULTVEC into the results buffer. RESULTVEC is a 4 or
508 ;; more element vector where aref 0 is the call count, aref 1 is the
509 ;; total time spent in the function, aref 2 is the average time
510 ;; spent in the function, and aref 3 is the symbol's string
511 ;; name. All other elements in the vector are ignored.
512 (let* ((cc (aref resultvec 0))
513 (tt (aref resultvec 1))
514 (at (aref resultvec 2))
515 (symname (aref resultvec 3))
516 callcnt totaltime avetime)
517 (setq callcnt (number-to-string cc)
518 totaltime (number-to-string tt)
519 avetime (number-to-string at))
520 ;; possibly prune the results
521 (if (and elp-report-limit
522 (numberp elp-report-limit)
523 (< cc elp-report-limit))
524 nil
525 (elp-output-insert-symname symname)
526 (insert-char 32 (+ elp-field-len (- (length symname)) 2))
527 ;; print stuff out, formatting it nicely
528 (insert callcnt)
529 (insert-char 32 (+ elp-cc-len (- (length callcnt)) 2))
530 (let ((ttstr (elp-pack-number totaltime elp-et-len))
531 (atstr (elp-pack-number avetime elp-at-len)))
532 (insert ttstr)
533 (insert-char 32 (+ elp-et-len (- (length ttstr)) 2))
534 (insert atstr))
535 (insert "\n"))))
536
537 (defvar elp-results-symname-map
538 (let ((map (make-sparse-keymap)))
539 (define-key map [mouse-2] 'elp-results-jump-to-definition)
540 (define-key map "\C-m" 'elp-results-jump-to-definition)
541 map)
542 "Keymap used on the function name column." )
543
544 (defun elp-results-jump-to-definition (&optional event)
545 "Jump to the definition of the function under the point."
546 (interactive (list last-nonmenu-event))
547 (if event (posn-set-point (event-end event)))
548 (find-function (get-text-property (point) 'elp-symname)))
549
550 (defun elp-output-insert-symname (symname)
551 ;; Insert SYMNAME with text properties.
552 (insert (propertize symname
553 'elp-symname (intern symname)
554 'keymap elp-results-symname-map
555 'mouse-face 'highlight
556 'help-echo "mouse-2 or RET jumps to definition")))
557
558 ;;;###autoload
559 (defun elp-results ()
560 "Display current profiling results.
561 If `elp-reset-after-results' is non-nil, then current profiling
562 information for all instrumented functions is reset after results are
563 displayed."
564 (interactive)
565 (let ((curbuf (current-buffer))
566 (resultsbuf (if elp-recycle-buffers-p
567 (get-buffer-create elp-results-buffer)
568 (generate-new-buffer elp-results-buffer))))
569 (set-buffer resultsbuf)
570 (erase-buffer)
571 ;; get the length of the longest function name being profiled
572 (let* ((longest 0)
573 (title "Function Name")
574 (titlelen (length title))
575 (elp-field-len titlelen)
576 (cc-header "Call Count")
577 (elp-cc-len (length cc-header))
578 (et-header "Elapsed Time")
579 (elp-et-len (length et-header))
580 (at-header "Average Time")
581 (elp-at-len (length at-header))
582 (resvec
583 (mapcar
584 (function
585 (lambda (funsym)
586 (let* ((info (get funsym elp-timer-info-property))
587 (symname (format "%s" funsym))
588 (cc (aref info 0))
589 (tt (aref info 1)))
590 (if (not info)
591 (insert "No profiling information found for: "
592 symname)
593 (setq longest (max longest (length symname)))
594 (vector cc tt (if (zerop cc)
595 0.0 ;avoid arithmetic div-by-zero errors
596 (/ (float tt) (float cc)))
597 symname)))))
598 elp-all-instrumented-list))
599 ) ; end let*
600 ;; If printing to stdout, insert the header so it will print.
601 ;; Otherwise use header-line-format.
602 (setq elp-field-len (max titlelen longest))
603 (if (or elp-use-standard-output noninteractive)
604 (progn
605 (insert title)
606 (if (> longest titlelen)
607 (progn
608 (insert-char 32 (- longest titlelen))))
609 (insert " " cc-header " " et-header " " at-header "\n")
610 (insert-char ?= elp-field-len)
611 (insert " ")
612 (insert-char ?= elp-cc-len)
613 (insert " ")
614 (insert-char ?= elp-et-len)
615 (insert " ")
616 (insert-char ?= elp-at-len)
617 (insert "\n"))
618 (let ((column 0))
619 (setq header-line-format
620 (mapconcat
621 (lambda (title)
622 (prog1
623 (concat
624 (propertize " "
625 'display (list 'space :align-to column)
626 'face 'fixed-pitch)
627 title)
628 (setq column (+ column 1
629 (if (= column 0)
630 elp-field-len
631 (length title))))))
632 (list title cc-header et-header at-header) ""))))
633 ;; if sorting is enabled, then sort the results list. in either
634 ;; case, call elp-output-result to output the result in the
635 ;; buffer
636 (if elp-sort-by-function
637 (setq resvec (sort resvec elp-sort-by-function)))
638 (mapc 'elp-output-result resvec))
639 ;; now pop up results buffer
640 (set-buffer curbuf)
641 (pop-to-buffer resultsbuf)
642 ;; copy results to standard-output?
643 (if (or elp-use-standard-output noninteractive)
644 (princ (buffer-substring (point-min) (point-max)))
645 (goto-char (point-min)))
646 ;; reset profiling info if desired
647 (and elp-reset-after-results
648 (elp-reset-all))))
649
650 (defun elp-unload-function ()
651 "Unload the Emacs Lisp Profiler."
652 (elp-restore-all)
653 ;; continue standard unloading
654 nil)
655 \f
656 (provide 'elp)
657
658 ;; arch-tag: c4eef311-9b3e-4bb2-8a54-3485d41b4eb1
659 ;;; elp.el ends here